Files
GoldenCrystal 751e84fc6d Add DebuggerDisplay attributes.
Format some code to C# 7.0.
Remove useless using directives.
2017-09-07 23:10:17 +02:00

16 lines
658 B
C#

namespace System.Unicode
{
/// <summary>Represents the value of the Numeric_Type property.</summary>
public enum UnicodeNumericType : byte
{
/// <summary>The code point has no numeric value.</summary>
None = 0,
/// <summary>The code point represents a decimal digit which is part of a contiguous ascending range of characters from 0 to 9, and can be used in a decimal radix positional numeral system.</summary>
Decimal = 1,
/// <summary>The code point represents a digit between 0 and 9 and requires special handling.</summary>
Digit = 2,
/// <summary>The code point represents another kind of numeric value.</summary>
Numeric = 3
}
}