scripts
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace System.Text
|
||||
{
|
||||
/// <summary>Defines the type of normalization to perform.</summary>
|
||||
/// <filterpriority>2</filterpriority>
|
||||
// Token: 0x020005F9 RID: 1529
|
||||
[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: 0x040016B0 RID: 5808
|
||||
FormC = 1,
|
||||
/// <summary>Indicates that a Unicode string is normalized using full canonical decomposition.</summary>
|
||||
// Token: 0x040016B1 RID: 5809
|
||||
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: 0x040016B2 RID: 5810
|
||||
FormKC = 5,
|
||||
/// <summary>Indicates that a Unicode string is normalized using full compatibility decomposition.</summary>
|
||||
// Token: 0x040016B3 RID: 5811
|
||||
FormKD
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user