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

ObjectHelper

时间:2015-04-20 16:35:44      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:

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

 

ObjectHelper

标签:

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

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