This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Text
{
/// <summary>Defines the type of normalization to perform.</summary>
// Token: 0x020001EC RID: 492
[Token(Token = "0x20001EC")]
[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: 0x040009A4 RID: 2468
[Token(Token = "0x40009A4")]
FormC = 1,
/// <summary>Indicates that a Unicode string is normalized using full canonical decomposition.</summary>
// Token: 0x040009A5 RID: 2469
[Token(Token = "0x40009A5")]
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: 0x040009A6 RID: 2470
[Token(Token = "0x40009A6")]
FormKC = 5,
/// <summary>Indicates that a Unicode string is normalized using full compatibility decomposition.</summary>
// Token: 0x040009A7 RID: 2471
[Token(Token = "0x40009A7")]
FormKD
}
}