扩展方法必须在非泛型静态类中定义:
public class CustomerHelperClass{public static MvcHtmlString CreateImage(string p_w_picpathSource, string altText, string width, string height){//通过TagBulider创建标签TagBuilder p_w_picpathTag = new TagBuilder("img");//MergeAttribute添加新特性p_w_picpathTag.MergeAttribute("src", p_w_picpathSource);p_w_picpathTag.MergeAttribute("alt", altText);p_w_picpathTag.MergeAttribute("width", width);p_w_picpathTag.MergeAttribute("height", height);//MvcHtmlString.Create使用指定的文本值,创建HTML编码的字符串return MvcHtmlString.Create(p_w_picpathTag.ToString(TagRenderMode.SelfClosing));}public static MvcHtmlString CreateImage(this HtmlHelper htmlHelper, string p_w_picpathSource, string altText, string height, string width){//通过TagBuilder创建标签TagBuilder p_w_picpathTag = new TagBuilder("img");p_w_picpathTag.MergeAttribute("src",p_w_picpathSource);p_w_picpathTag.MergeAttribute("alt", altText);p_w_picpathTag.MergeAttribute("height", height);p_w_picpathTag.MergeAttribute("width", width);//MvcHtmlString.Create使用指定的文本值,创建HTML编码的字符串return MvcHtmlString.Create(p_w_picpathTag.ToString(TagRenderMode.SelfClosing));}}
在上面的这段代码中在编译时会出现“扩展方法必须在非泛型静态类中定义”,出现错误的原因就在于
public class CustomerHelperClass
扩展方法所在的这个类为非静态的,只需将扩展方法所在的类定义成静态类即可,修改如下:
public static class CustomerHelperClass
因此在使用静态方法时需要注意:
1、扩展方法即静态方法。
2、扩展方法必须在静态类里面。
转载于:https://blog.51cto.com/xyh1993/1830555