码迷,mamicode.com
首页 > Windows程序 > 详细

C#创建自己的扩展方法

时间:2017-12-08 14:07:16      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:target   c#   sed   otn   赋值   opened   http   list   tar   

C#可以创建自己的扩展方法Extension Method:

参考这篇《判断是否为空然后赋值http://www.cnblogs.com/insus/p/8004097.html

里,前面三个方法,均出现null这关键词,在判断时,你需要== null或者!=null。

其实你完全可以创建C#的扩展方法来消除这种的繁杂。

 技术分享图片

 

技术分享图片
 public static class ExtensionMethod
    {
        public static bool IsNull(this object obj)
        {
            return obj == null;
        }

        public static bool IsNotNull(this object obj)
        {
            return obj != null;
        }
    }
Source Code


因此,前一篇中,可以产生方法五:
技术分享图片

 

技术分享图片
result = str.IsNull() ? "" : str;

            result = str.IsNotNull() ? str : "";
Source Code

 

C#创建自己的扩展方法

标签:target   c#   sed   otn   赋值   opened   http   list   tar   

原文地址:http://www.cnblogs.com/insus/p/8004351.html

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