标签: c# unicode
CharUnicodeInfo.GetUnicodeCategory(string, int)方法获取字符串中代码点的类别,但我想直接传递代码点(int)。
CharUnicodeInfo.GetUnicodeCategory(string, int)
int
Char.GetUnicodeCategory(char)方法只获取范围为U + FFFF-U + 00的字符类别。
Char.GetUnicodeCategory(char)
为了提高效率,我需要像Char.GetUnicodeCategory(int)这样的范围U + 10FFFF-U + 00。建议?
Char.GetUnicodeCategory(int)