代码:
public static class StringExtern
{
public static string IsNullOrEmpty(this string s)
{
return string.IsNullOrEmpty(s);
}
}
- 扩展方法必须是在静态类中的静态方法,类名无要求
- 方法参数第一个必须为自身参数,this + 扩展类 + 参数名,例如:this string s
代码:
public static class StringExtern
{
public static string IsNullOrEmpty(this string s)
{
return string.IsNullOrEmpty(s);
}
}