using System; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Collections { /// Compares two objects for equivalence, where string comparisons are case-sensitive. // Token: 0x020005A9 RID: 1449 [Token(Token = "0x20005A9")] [ComVisible(true)] [Serializable] public sealed class Comparer : IComparer, ISerializable { // Token: 0x06002BE2 RID: 11234 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BE2")] [Address(RVA = "0x25328B0", Offset = "0x25316B0", VA = "0x1825328B0")] private Comparer() { } /// Initializes a new instance of the class using the specified . /// The to use for the new . /// /// is . // Token: 0x06002BE3 RID: 11235 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BE3")] [Address(RVA = "0x2532710", Offset = "0x2531510", VA = "0x182532710")] public Comparer(CultureInfo culture) { } // Token: 0x06002BE4 RID: 11236 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BE4")] [Address(RVA = "0x25327A0", Offset = "0x25315A0", VA = "0x1825327A0")] private Comparer(SerializationInfo info, StreamingContext context) { } /// Performs a case-sensitive comparison of two objects of the same type and returns a value indicating whether one is less than, equal to, or greater than the other. /// The first object to compare. /// The second object to compare. /// A signed integer that indicates the relative values of and , as shown in the following table. /// Value /// /// Meaning /// /// Less than zero /// /// is less than . /// /// Zero /// /// equals . /// /// Greater than zero /// /// is greater than . /// Neither nor implements the interface. /// -or- /// and are of different types and neither one can handle comparisons with the other. // Token: 0x06002BE5 RID: 11237 RVA: 0x00017298 File Offset: 0x00015498 [Token(Token = "0x6002BE5")] [Address(RVA = "0x2532440", Offset = "0x2531240", VA = "0x182532440", Slot = "4")] public int Compare(object a, object b) { return 0; } /// Populates a object with the data required for serialization. /// The object to populate with data. /// The context information about the source or destination of the serialization. /// /// is . // Token: 0x06002BE6 RID: 11238 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002BE6")] [Address(RVA = "0x25325C0", Offset = "0x25313C0", VA = "0x1825325C0", Slot = "5")] public void GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x04001977 RID: 6519 [global::Cpp2IlInjected.FieldOffset(Offset = "0x10")] [Token(Token = "0x4001977")] private CompareInfo m_compareInfo; /// Represents an instance of that is associated with the of the current thread. This field is read-only. // Token: 0x04001978 RID: 6520 [Token(Token = "0x4001978")] public static readonly Comparer Default; /// Represents an instance of that is associated with . This field is read-only. // Token: 0x04001979 RID: 6521 [Token(Token = "0x4001979")] public static readonly Comparer DefaultInvariant; } }