挖土

Coding for fun.
随笔 - 33, 文章 - 25, 评论 - 22, 阅读 - 86498
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

给string加几个扩展方法

Posted on   挖土.  阅读(441)  评论(3编辑  收藏  举报

 

复制代码
代码
    public static class StringExtend
    {
        
public static bool IsNullOrEmpty(this string s)
        {
            
return string.IsNullOrEmpty(s);
        }

        
public static bool IsInt(this string s)
        {
            
int i;
            
return int.TryParse(s, out i);
        }

        
public static int ToInt(this string s)
        {
            
return int.Parse(s);
        }
    }
复制代码

 

 

努力加载评论中...
点击右上角即可分享
微信分享提示