2014-10-27 21:12:57 +01:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2014-11-03 00:05:54 +01:00
|
|
|
namespace System.Unicode
|
2014-10-27 21:12:57 +01:00
|
|
|
{
|
|
|
|
|
public enum UnicodeNumericType : byte
|
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
Decimal = 1,
|
|
|
|
|
Digit = 2,
|
|
|
|
|
Numeric = 3
|
|
|
|
|
}
|
|
|
|
|
}
|