摘要: public static string GetModelErros(this ModelStateDictionary dic) { var sb = new StringBuilder(); var enumerable = dic.Values; if (enumerable != null) { foreach (ModelState modelState in enumerable) { ... 阅读全文
posted @ 2014-04-01 17:03 ULiiAn·竹 阅读(538) 评论(1) 推荐(0) 编辑