mscorlib(4.0.0.0) API with additions
IComparable.cs
2 
3 namespace System
4 {
6  [ComVisible(true)]
7  [__DynamicallyInvokable]
8  public interface IComparable
9  {
15  [__DynamicallyInvokable]
16  int CompareTo(object obj);
17  }
20  [__DynamicallyInvokable]
21  public interface IComparable<in T>
22  {
26  [__DynamicallyInvokable]
27  int CompareTo(T other);
28  }
29 }
Definition: __Canon.cs:3
Defines a generalized type-specific comparison method that a value type or class implements to order ...
Definition: IComparable.cs:8
int CompareTo(object obj)
Compares the current instance with another object of the same type and returns an integer that indica...