using System; using Cpp2IlInjected; namespace System { /// Defines a generalized comparison method that a value type or class implements to create a type-specific comparison method for ordering or sorting its instances. /// The type of object to compare. // Token: 0x0200010B RID: 267 [Token(Token = "0x200010B")] public interface IComparable { /// Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. /// An object to compare with this instance. /// A value that indicates the relative order of the objects being compared. The return value has these meanings: /// Value /// /// Meaning /// /// Less than zero /// /// This instance precedes in the sort order. /// /// Zero /// /// This instance occurs in the same position in the sort order as . /// /// Greater than zero /// /// This instance follows in the sort order. // Token: 0x060009C6 RID: 2502 [Token(Token = "0x60009C6")] [Address(Slot = "0")] int CompareTo(T other); } }