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: 0x0200019B RID: 411
[Token(Token = "0x200019B")]
[ComVisible(true)]
[Serializable]
public enum StringComparison
{
/// Compare strings using culture-sensitive sort rules and the current culture.
// Token: 0x04000687 RID: 1671
[Token(Token = "0x4000687")]
CurrentCulture,
/// Compare strings using culture-sensitive sort rules, the current culture, and ignoring the case of the strings being compared.
// Token: 0x04000688 RID: 1672
[Token(Token = "0x4000688")]
CurrentCultureIgnoreCase,
/// Compare strings using culture-sensitive sort rules and the invariant culture.
// Token: 0x04000689 RID: 1673
[Token(Token = "0x4000689")]
InvariantCulture,
/// Compare strings using culture-sensitive sort rules, the invariant culture, and ignoring the case of the strings being compared.
// Token: 0x0400068A RID: 1674
[Token(Token = "0x400068A")]
InvariantCultureIgnoreCase,
/// Compare strings using ordinal (binary) sort rules.
// Token: 0x0400068B RID: 1675
[Token(Token = "0x400068B")]
Ordinal,
/// Compare strings using ordinal (binary) sort rules and ignoring the case of the strings being compared.
// Token: 0x0400068C RID: 1676
[Token(Token = "0x400068C")]
OrdinalIgnoreCase
}
}