mscorlib(4.0.0.0) API with additions
IComparer.cs
2 
3 namespace System.Collections
4 {
6  [ComVisible(true)]
7  [__DynamicallyInvokable]
8  public interface IComparer
9  {
19  [__DynamicallyInvokable]
20  int Compare(object x, object y);
21  }
22 }
Definition: __Canon.cs:3
int Compare(object x, object y)
Compares two objects and returns a value indicating whether one is less than, equal to,...
Exposes a method that compares two objects.
Definition: IComparer.cs:8