标签:static span 输入 returns reg com 数字 tle int
1 /// <summary> 2 /// 判断输入是否数字 3 /// </summary> 4 /// <param name="num">要判断的字符串</param> 5 /// <returns></returns> 6 static public bool VldInt(string num) 7 { 8 #region 9 int ResultNum; 10 return int.TryParse(num, out ResultNum); 11 #endregion 12 }
http://www.cnblogs.com/zhouzangood/articles/3613738.html
标签:static span 输入 returns reg com 数字 tle int
原文地址:https://www.cnblogs.com/youzi-xuchongyou/p/8961008.html