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

22 lines
1.0 KiB
C#

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