using System;
using System.Runtime.InteropServices;
namespace System.Globalization
{
/// Specifies the culture-specific display of digits.
// Token: 0x02000184 RID: 388
[ComVisible(true)]
[Serializable]
public enum DigitShapes
{
/// 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.
// Token: 0x04000556 RID: 1366
Context,
/// The digit shape is not changed. Full Unicode compatibility is maintained.
// Token: 0x04000557 RID: 1367
None,
/// 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.
// Token: 0x04000558 RID: 1368
NativeNational
}
}