Files
NetUnicodeInfo/UnicodeInformation/UnicodeNumericType.cs
T

16 lines
658 B
C#
Raw Normal View History

2017-09-07 23:10:17 +02:00
namespace System.Unicode
{
2014-12-16 02:32:00 +01:00
/// <summary>Represents the value of the Numeric_Type property.</summary>
public enum UnicodeNumericType : byte
{
2014-12-16 02:32:00 +01:00
/// <summary>The code point has no numeric value.</summary>
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>
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>
Digit = 2,
2014-12-16 02:32:00 +01:00
/// <summary>The code point represents another kind of numeric value.</summary>
Numeric = 3
}
}