using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace System.Unicode { public enum UnicodeNumericType : byte { None = 0, Decimal = 1, Digit = 2, Numeric = 3 } }