如代码:
static bool ContainChinese(string input) { string pattern = "[\u4e00-\u9fbb]"; return Regex.IsMatch(input, pattern); }