using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Text
{
/// Defines the type of normalization to perform.
// Token: 0x020001F3 RID: 499
[Token(Token = "0x20001F3")]
[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: 0x040009AE RID: 2478
[Token(Token = "0x40009AE")]
FormC = 1,
/// Indicates that a Unicode string is normalized using full canonical decomposition.
// Token: 0x040009AF RID: 2479
[Token(Token = "0x40009AF")]
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: 0x040009B0 RID: 2480
[Token(Token = "0x40009B0")]
FormKC = 5,
/// Indicates that a Unicode string is normalized using full compatibility decomposition.
// Token: 0x040009B1 RID: 2481
[Token(Token = "0x40009B1")]
FormKD
}
}