using System;
using System.Runtime.InteropServices;
namespace System.Text
{
/// Defines the type of normalization to perform.
/// 2
// Token: 0x020005F9 RID: 1529
[ComVisible(true)]
public enum NormalizationForm
{
/// Indicates that a Unicode string is normalized using full canonical decomposition, followed by the replacement of sequences with their primary composites, if possible.
// Token: 0x040016B0 RID: 5808
FormC = 1,
/// Indicates that a Unicode string is normalized using full canonical decomposition.
// Token: 0x040016B1 RID: 5809
FormD,
/// Indicates that a Unicode string is normalized using full compatibility decomposition, followed by the replacement of sequences with their primary composites, if possible.
// Token: 0x040016B2 RID: 5810
FormKC = 5,
/// Indicates that a Unicode string is normalized using full compatibility decomposition.
// Token: 0x040016B3 RID: 5811
FormKD
}
}