using System; using System.Globalization; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Collections { /// Compares two objects for equivalence, ignoring the case of strings. // Token: 0x020005C5 RID: 1477 [Token(Token = "0x20005C5")] [ComVisible(true)] [Serializable] public class CaseInsensitiveComparer : IComparer { /// Initializes a new instance of the class using the of the current thread. // Token: 0x06002DD4 RID: 11732 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002DD4")] [Address(RVA = "0x2C2E7B0", Offset = "0x2C2D7B0", VA = "0x182C2E7B0")] public CaseInsensitiveComparer() { } /// Initializes a new instance of the class using the specified . /// The to use for the new . /// /// is . // Token: 0x06002DD5 RID: 11733 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002DD5")] [Address(RVA = "0x2C2E720", Offset = "0x2C2D720", VA = "0x182C2E720")] public CaseInsensitiveComparer(CultureInfo culture) { } /// Gets an instance of that is associated with the of the current thread and that is always available. /// An instance of that is associated with the of the current thread. // Token: 0x170006ED RID: 1773 // (get) Token: 0x06002DD6 RID: 11734 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170006ED")] public static CaseInsensitiveComparer Default { [Token(Token = "0x6002DD6")] [Address(RVA = "0x2C2E830", Offset = "0x2C2D830", VA = "0x182C2E830")] get { return null; } } /// Performs a case-insensitive 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 , with casing ignored. /// /// Zero /// /// equals , with casing ignored. /// /// Greater than zero /// /// is greater than , with casing ignored. /// Neither nor implements the interface. /// -or- /// and are of different types. // Token: 0x06002DD7 RID: 11735 RVA: 0x000195C0 File Offset: 0x000177C0 [Token(Token = "0x6002DD7")] [Address(RVA = "0x2C2E4F0", Offset = "0x2C2D4F0", VA = "0x182C2E4F0", Slot = "4")] public int Compare(object a, object b) { return 0; } // Token: 0x04001A37 RID: 6711 [global::Cpp2IlInjected.FieldOffset(Offset = "0x10")] [Token(Token = "0x4001A37")] private CompareInfo m_compareInfo; } }