请问如何判断输入的一个字符为汉字
请问如何判断输入的一个字符为汉字?谢谢
2006-10-20 11:07
string str = Console.ReadLine();
if (char.isLetter(str))
{
}
else if (char.IsDigit(str))
{
}

2006-10-20 11:14