摘要:
``` /// /// 1. 校验正整数(包含0) /// public static bool isInterger(string str) { return string.IsNullOrWhiteSpace(str) ? false:Regex.IsMatch(str, @"^[1-9]\d*|0$"); } /// /// 2. 校验非零正整数 /// public s... 阅读全文
摘要:
NewtonSoft.Json NULL转空字符串 http://www.cnblogs.com/hetuan/articles/4565702.html 阅读全文