21 lines
439 B
C#
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
|
|
}
|
|
}
|