摘要:
/// <summary> /// 判断输入的字符串全是字符不包括数字,不是返回false,否则返回true 20100728 /// </summary> /// <param name="text"></param> /// <returns></returns> public static bool IsChar(string text) //http://wenwen.soso.com/z/q120543222.htm { int count = 0; for (int i = 0; i < 阅读全文