Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Text/NormalizationForm.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

31 lines
1.2 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Text
{
/// <summary>Defines the type of normalization to perform.</summary>
// Token: 0x020001F3 RID: 499
[Token(Token = "0x20001F3")]
[ComVisible(true)]
public enum NormalizationForm
{
/// <summary>Indicates that a Unicode string is normalized using full canonical decomposition, followed by the replacement of sequences with their primary composites, if possible.</summary>
// Token: 0x040009AE RID: 2478
[Token(Token = "0x40009AE")]
FormC = 1,
/// <summary>Indicates that a Unicode string is normalized using full canonical decomposition.</summary>
// Token: 0x040009AF RID: 2479
[Token(Token = "0x40009AF")]
FormD,
/// <summary>Indicates that a Unicode string is normalized using full compatibility decomposition, followed by the replacement of sequences with their primary composites, if possible.</summary>
// Token: 0x040009B0 RID: 2480
[Token(Token = "0x40009B0")]
FormKC = 5,
/// <summary>Indicates that a Unicode string is normalized using full compatibility decomposition.</summary>
// Token: 0x040009B1 RID: 2481
[Token(Token = "0x40009B1")]
FormKD
}
}