using System; using System.Collections; namespace LibationWinForms { class ObjectComparer : IComparer where T : IComparable { public int Compare(object x, object y) => ((T)x).CompareTo((T)y); } }