摘要: 1 public static int NameToIndex(string columnName) 2 { 3 if (!Regex.IsMatch(columnName.ToUpper(), @"[A-Z]+")) { throw new Exception("参数非法!"); } 5 int index = 0; 6 char[] chars = columnName... 阅读全文
posted @ 2017-04-20 15:46 头文件 阅读(518) 评论(0) 推荐(0) 编辑