Files
NetUnicodeInfo/UnicodeInformation/UnihanNumericType.cs
T
2014-11-15 00:58:03 +01:00

21 lines
439 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace System.Unicode
{
/// <summary>Represents the different numeric types from the Unihan database.</summary>
public enum UnihanNumericType : byte
{
None = 0,
[ValueName("kAccountingNumeric")]
Accounting = 1,
[ValueName("kOtherNumeric")]
Other = 2,
[ValueName("kPrimaryNumeric")]
Primary = 3
}
}