2017-09-07 23:10:17 +02:00
namespace System.Unicode
2014-10-27 21:12:57 +01:00
{
2014-12-16 02:32:00 +01:00
/// <summary>Represents the value of the Numeric_Type property.</summary>
2014-10-27 21:12:57 +01:00
public enum UnicodeNumericType : byte
{
2014-12-16 02:32:00 +01:00
/// <summary>The code point has no numeric value.</summary>
2014-10-27 21:12:57 +01:00
None = 0 ,
2014-12-16 02:32:00 +01:00
/// <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>
2014-10-27 21:12:57 +01:00
Decimal = 1 ,
2014-12-16 02:32:00 +01:00
/// <summary>The code point represents a digit between 0 and 9 and requires special handling.</summary>
2014-10-27 21:12:57 +01:00
Digit = 2 ,
2014-12-16 02:32:00 +01:00
/// <summary>The code point represents another kind of numeric value.</summary>
2014-10-27 21:12:57 +01:00
Numeric = 3
}
}