m
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user