如此处所述:
Char.IsLetter() determines whether a Char is a member of any category of Unicode letter.
是否有可能获得Unicode 字母本身的类别Char.IsLetter(),什么时候true?
当然 - 我想你想要CharUnicodeInfo.GetUnicodeCategory(char)或Char.GetUnicodeCategory(char)。
请参阅文档以了解差异 - 建议您使用CharUnicodeInfo, 以获取当前Unicode 标准中的值。