码迷,mamicode.com
首页 > Windows程序 > 详细

c# 字符串转为数字

时间:2018-04-27 12:21:57      阅读:216      评论:0      收藏:0      [点我收藏+]

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

C#判断输入是否数字

 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

c# 字符串转为数字

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

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!