mscorlib(4.0.0.0) API with additions
IComparer.cs
2 {
5  [__DynamicallyInvokable]
6  public interface IComparer<in T>
7  {
15  [__DynamicallyInvokable]
16  int Compare(T x, T y);
17  }
18 }
Defines a method that a type implements to compare two objects.
Definition: IComparer.cs:6
int Compare(T x, T y)
Compares two objects and returns a value indicating whether one is less than, equal to,...