摘要: class IsNumeric { //判断字符串是否为纯数字 public static bool IsNumber(string str) { if (str == null || str.Length == 0) //验证这个参数是否为空 return false; //是,就返回False ASCIIEncoding ascii = new ASCIIEncoding();//new ASCII... 阅读全文
posted @ 2012-12-09 22:38 氺〤魚Oo。 阅读(1565) 评论(0) 推荐(0) 编辑