23 lines
878 B
C#
23 lines
878 B
C#
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
|
|
}
|
|
}
|