char a = '好';
char b = 'a';
char c = '1';
Console.WriteLine(Char.IsLetter(a));//输出:True
Console.WriteLine(Char.IsLetter(b));//输出:True
Console.WriteLine(Char.IsLetter(c));//输出:False
Char.IsLetter的方法说明
//
// 摘要:
// 指示指定的 Unicode 字符是否属于字母类别。
// Indicates whether the specified Unicode character is categorized as an alphabetic letter.
//
// 参数:
// c:
// 一个 Unicode 字符。
//
// 返回结果:
// 如果 c 是字母,则为 true;否则,为 false。
我想问的是 难道"好"是字母?
慕容3067478
函数式编程