Asp.net – How to compare different types of objects
Looking for a way to find is object between two objects. Tried to convert integer to decimal using static bool Between(object value, object low, object high) { if (value == null && low == null && high == null) return…