char a = '好';char b = 'a';char c = '1';Console.WriteLine(Char.IsLetter(a));//输出:TrueConsole.WriteLine(Char.IsLetter(b));//输出:TrueConsole.WriteLine(Char.IsLetter(c));//输出:FalseChar.IsLetter的方法说明// // 摘要: // 指示指定的 Unicode 字符是否属于字母类别。// Indicates whether the specified Unicode character is categorized as an alphabetic letter. // // 参数: // c: // 一个 Unicode 字符。 // // 返回结果: // 如果 c 是字母,则为 true;否则,为 false。我想问的是 难道"好"是字母?
- 2 回答
- 0 关注
- 722 浏览
添加回答
举报
0/150
提交
取消