C#创建自己的扩展方法
2021-04-22 23:26
标签:target c# sed otn 赋值 opened http list tar C#可以创建自己的扩展方法Extension Method: 里,前面三个方法,均出现null这关键词,在判断时,你需要== null或者!=null。 C#创建自己的扩展方法 标签:target c# sed otn 赋值 opened http list tar 原文地址:http://www.cnblogs.com/insus/p/8004351.html
参考这篇《判断是否为空然后赋值》http://www.cnblogs.com/insus/p/8004097.html
其实你完全可以创建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;
}
}
因此,前一篇中,可以产生方法五:result = str.IsNull() ? "" : str;
result = str.IsNotNull() ? str : "";