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

This用法

时间:2014-12-25 18:15:58      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

添加StringEx类

public static class StringEx
    {
        public static int ToInt(this string str)
        {
            int number = default(int);
            if (string.IsNullOrEmpty(str))
            {
                return number;
            }

            int.TryParse(str, out number);
            return number;
        }
    }

这样就可以 以string.ToInt()方式使用了

 

This用法

标签:

原文地址:http://www.cnblogs.com/zkjwp7/p/4185142.html

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