Added the UnicodeInformation project, for retrieving and providing Unicode character data.

This commit is contained in:
GoldenCrystal
2014-10-27 21:12:57 +01:00
parent 1380e6d929
commit e9cc4e16cb
19 changed files with 1392 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UnicodeInformation
{
public enum UnicodeNumericType : byte
{
None = 0,
Decimal = 1,
Digit = 2,
Numeric = 3
}
}