码迷,mamicode.com
首页 > 其他好文 > 详细

int.TryParse 与 int.Parse 的区别

时间:2014-06-15 16:05:38      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   res   

int.TryParse 与 int.Parse 的区别是,int.TryParse不会产生异常,转换成功返回 true,转换失败返回 false。最后一个参数为输出值,如果转换失败,输出值为 0。

用法 

int a=0;
bool Result = int.TryParse("100",a)

 

int.TryParse 与 int.Parse 的区别,布布扣,bubuko.com

int.TryParse 与 int.Parse 的区别

标签:style   class   blog   code   color   res   

原文地址:http://www.cnblogs.com/wupeihong/p/3785717.html

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