namespace System.Unicode
{
/// Represents the value of the Numeric_Type property.
public enum UnicodeNumericType : byte
{
/// The code point has no numeric value.
None = 0,
/// 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.
Decimal = 1,
/// The code point represents a digit between 0 and 9 and requires special handling.
Digit = 2,
/// The code point represents another kind of numeric value.
Numeric = 3
}
}