31 lines
1.2 KiB
C#
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: 0x020001EC RID: 492
|
|
[Token(Token = "0x20001EC")]
|
|
[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: 0x040009A4 RID: 2468
|
|
[Token(Token = "0x40009A4")]
|
|
FormC = 1,
|
|
/// <summary>Indicates that a Unicode string is normalized using full canonical decomposition.</summary>
|
|
// Token: 0x040009A5 RID: 2469
|
|
[Token(Token = "0x40009A5")]
|
|
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: 0x040009A6 RID: 2470
|
|
[Token(Token = "0x40009A6")]
|
|
FormKC = 5,
|
|
/// <summary>Indicates that a Unicode string is normalized using full compatibility decomposition.</summary>
|
|
// Token: 0x040009A7 RID: 2471
|
|
[Token(Token = "0x40009A7")]
|
|
FormKD
|
|
}
|
|
}
|