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

为system对象添加扩展方法

时间:2016-03-12 10:25:06      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

 ////扩展方法类:必须为非嵌套,非泛型的静态类
        public static class DatetimeEx
        {
            //通过this声明扩展的类,这里给DateTime类扩展一个Show方法,只有一个参数
            public static void Show(this DateTime date, string msg)
            {
                Console.WriteLine("扩展方法调用");
                Console.WriteLine(msg);
            }
        }

  

为system对象添加扩展方法

标签:

原文地址:http://www.cnblogs.com/fang-beny/p/5267885.html

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