//字符是否为汉字

 public bool IsChinese(char c)  

  •         {  
  •             return (int)c >= 0x4E00 && (int)c <= 0x9FA5;  
  •         }  
原文地址:https://www.cnblogs.com/DTWolf/p/4670431.html