24 lines
588 B
C#
24 lines
588 B
C#
|
// ==++==
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// ==--==
|
||
|
//
|
||
|
// The enumeration constants used in NumberFormatInfo.DigitSubstitution.
|
||
|
//
|
||
|
namespace System.Globalization {
|
||
|
|
||
|
|
||
|
[Serializable]
|
||
|
[System.Runtime.InteropServices.ComVisible(true)]
|
||
|
public enum DigitShapes : int {
|
||
|
|
||
|
Context = 0x0000, // The shape depends on the previous text in the same output.
|
||
|
|
||
|
None = 0x0001, // Gives full Unicode compatibility.
|
||
|
|
||
|
NativeNational = 0x0002, // National shapes determined by LOCALE_SNATIVEDIGITS
|
||
|
}
|
||
|
}
|
||
|
|