using System; namespace ChrisKaczor.HomeMonitor.Weather.Service { public static class Extensions { public static bool IsBetween(this T item, T start, T end) where T : IComparable { return item.CompareTo(start) >= 0 && item.CompareTo(end) <= 0; } } }