方法一:
原文:http://www.soave.cn/blog/article.asp?id=232
在unicode 字符串中,中文的范围是在4E00..9FFF:CJK Unified Ideographs。
通过对字符的unicode编码进行判断来确定字符是否为中文。

C# 判断中文字符(字符串)protected bool  IsChineseLetter(string input,int index)
}

方法二:

C# 判断中文字符(字符串)public bool IsChina(string CString)
          }

方法三:
        }

方法四:
C# 判断中文字符(字符串)for (int i=0; i<s.length; i++)

方法五:
C# 判断中文字符(字符串)unicodeencoding   unicodeencoding   =   new   unicodeencoding();  
C# 判断中文字符(字符串)  
byte   []   unicodebytearray   =   unicodeencoding.getbytes(   inputstring   );  
C# 判断中文字符(字符串)  
for(   int   i   =   0;   i   <   unicodebytearray.length;   i++   )  

方法六:

相关文章: