摘要: public static class Validator { /// /// 数字 /// /// /// public static bool IsNumber(string value) { return IsMatch(@"^[0-9]*$", value); } /// /// 非零正整数 /// /// /// public static bool IsInt(string... 阅读全文
posted @ 2014-02-08 17:43 水手哥 阅读(353) 评论(0) 推荐(0) 编辑