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

StringHelper

时间:2015-04-20 16:30:08      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:

 1 public static class StringHelper
 2 {
 3         public static int? ToIntNullable(this string obj)
 4         {
 5             if (obj == null || string.IsNullOrWhiteSpace(obj.ToString(CultureInfo.InvariantCulture)))
 6             {
 7                 return null;
 8             }
 9             else
10             {
11                 int offsetX = 0;
12                 if (Int32.TryParse(obj.ToString(CultureInfo.InvariantCulture), out offsetX))
13                 {
14                     return offsetX;
15                 }
16                 else
17                 {
18                     return null;
19                 }
20             }
21         }
22 }

 

StringHelper

标签:

原文地址:http://www.cnblogs.com/JustYong/p/4441690.html

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