System.Collections.Generic.Comparer<T>
namespace System.Collections.Generic
{
public abstract class Comparer<T> : IComparer<T>, IComparer
{
public static Comparer<T> Default { get; }
protected Comparer();
public abstract int Compare(T x, T y);
public static Comparer<T> Create(Comparison<T> comparison);
}
}