namespace System.Unicode
{
/// Represents the different numeric types from the Unihan database.
public enum UnihanNumericType : byte
{
/// Indicates that there is no Unihan numeric property defined for the code point.
None = 0,
/// Indicates that the propery kPrimaryNumeric is defined for this code point.
/// The kPrimaryNumeric property is used for ideographs wich are standard numerals.
[ValueName("kPrimaryNumeric")]
Primary = 1,
/// Indicates that the propery kAccountingNumeric is defined for this code point.
/// The kAccountingNumeric property is used for ideographs used as accounting numerals.
[ValueName("kAccountingNumeric")]
Accounting = 2,
/// Indicates that the propery kOtherNumeric is defined for this code point.
/// The kOtherNumeric property is used for ideographs wich are used as numerals in non common contexts.
[ValueName("kOtherNumeric")]
Other = 3,
}
}