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