RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
一个C#里面的小知识

这是我的第一篇博文,废话我就不多说,直入话题。我是一个新手,作为一个新手,我看着  变量.Tostring()..为啥它可以"  . "出来呢???于是,我就拿以前公司项目上的一些框架,找来看看。就做了下面的例子,给贴出来吧:

成都创新互联专业为企业提供大丰网站建设、大丰做网站、大丰网站设计、大丰网站制作等企业网站建设、网页设计与制作、大丰企业网站模板建站服务,10多年大丰做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。

 public static partial class OVerrid 
    {
        public static int ToInt(this object value, int def)
        {
            if (value == null)
            {
                return def;
            }
            int result;
            if (!int.TryParse(value.ToString(), out result))
            {
                return def;
            }
            return result;
        }

        public static int ToInt(this object value)
        {
            return ToInt(value, 0);
        }
    }

 

  static void Main(string[] args)
        {
            string aa = "";
            aa.ToInt();

        }

 

是不是很幼稚??新手来的,没办法!!继续学习探讨中!

 

 

 

 

 

 


网站题目:一个C#里面的小知识
转载源于:http://scpingwu.com/article/gjphjc.html