using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Text { /// Defines the type of normalization to perform. // Token: 0x020001EC RID: 492 [Token(Token = "0x20001EC")] [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: 0x040009A4 RID: 2468 [Token(Token = "0x40009A4")] FormC = 1, /// Indicates that a Unicode string is normalized using full canonical decomposition. // Token: 0x040009A5 RID: 2469 [Token(Token = "0x40009A5")] 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: 0x040009A6 RID: 2470 [Token(Token = "0x40009A6")] FormKC = 5, /// Indicates that a Unicode string is normalized using full compatibility decomposition. // Token: 0x040009A7 RID: 2471 [Token(Token = "0x40009A7")] FormKD } }