string text = "是不是汉字,ABC";
            for (int i = 0; i < text.Length; i++)
            {
                if ((int)text[i] > 127)
                    MessageBox.Show("是汉字");
                else
                    MessageBox.Show("不是汉字");
            }