using System; namespace System { /// Defines a generalized comparison method that a value type or class implements to create a type-specific comparison method for ordering instances. /// The type of objects to compare. /// 1 // Token: 0x0200000A RID: 10 public interface IComparable { /// Compares the current object with another object of the same type. /// A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the parameter.Zero This object is equal to . Greater than zero This object is greater than . /// An object to compare with this object. // Token: 0x06000082 RID: 130 int CompareTo(T other); } }