c# 字符串转为数字

2021-04-14 14:25

阅读:367

标签:static   span   输入   returns   reg   com   数字   tle   int   

C#判断输入是否数字

 1 /// 
 2 /// 判断输入是否数字
 3 /// 
 4 /// 要判断的字符串
 5 /// 
 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

c# 字符串转为数字

标签:static   span   输入   returns   reg   com   数字   tle   int   

原文地址:https://www.cnblogs.com/youzi-xuchongyou/p/8961008.html


评论


亲,登录后才可以留言!