using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BITKit { public static partial class Extensions { public static float GetDifference(this IEnumerable self) { return self.Max() - self.Min(); } } }