using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Specifies the culture, case, and sort rules to be used by certain overloads of the and methods. // Token: 0x02000194 RID: 404 [Token(Token = "0x2000194")] [ComVisible(true)] [Serializable] public enum StringComparison { /// Compare strings using culture-sensitive sort rules and the current culture. // Token: 0x0400067D RID: 1661 [Token(Token = "0x400067D")] CurrentCulture, /// Compare strings using culture-sensitive sort rules, the current culture, and ignoring the case of the strings being compared. // Token: 0x0400067E RID: 1662 [Token(Token = "0x400067E")] CurrentCultureIgnoreCase, /// Compare strings using culture-sensitive sort rules and the invariant culture. // Token: 0x0400067F RID: 1663 [Token(Token = "0x400067F")] InvariantCulture, /// Compare strings using culture-sensitive sort rules, the invariant culture, and ignoring the case of the strings being compared. // Token: 0x04000680 RID: 1664 [Token(Token = "0x4000680")] InvariantCultureIgnoreCase, /// Compare strings using ordinal (binary) sort rules. // Token: 0x04000681 RID: 1665 [Token(Token = "0x4000681")] Ordinal, /// Compare strings using ordinal (binary) sort rules and ignoring the case of the strings being compared. // Token: 0x04000682 RID: 1666 [Token(Token = "0x4000682")] OrdinalIgnoreCase } }