Files
2026-06-04 11:42:34 +02:00

26 lines
1.0 KiB
C#

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
}
}