This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,22 @@
using System;
using System.Runtime.InteropServices;
namespace System.Globalization
{
/// <summary>Specifies the culture-specific display of digits.</summary>
// Token: 0x02000184 RID: 388
[ComVisible(true)]
[Serializable]
public enum DigitShapes
{
/// <summary>The digit shape depends on the previous text in the same output. European digits follow Latin scripts; Arabic-Indic digits follow Arabic text; and Thai digits follow Thai text.</summary>
// Token: 0x04000556 RID: 1366
Context,
/// <summary>The digit shape is not changed. Full Unicode compatibility is maintained.</summary>
// Token: 0x04000557 RID: 1367
None,
/// <summary>The digit shape is the native equivalent of the digits from 0 through 9. ASCII digits from 0 through 9 are replaced by equivalent native national digits.</summary>
// Token: 0x04000558 RID: 1368
NativeNational
}
}