C# 判断字符是否中文还是英文

private static bool IsHanZi(string ch)
        {
            byte[] byte_len = System.Text.Encoding.Default.GetBytes(ch);
            if (byte_len.Length == 2) { return true; }
            return false;
        }
原文地址:https://www.cnblogs.com/sunxi/p/5891653.html