如何制作支持泛型类型的HTML Helpers?

时间:2010-06-01 10:51:17

标签: c# .net html helper


public static class EmptyOrNullHelper

public static string EmptyOrNull(this HtmlHelper helper, IQueryable(T) type)
{
//Code
}

}

1 个答案:

答案 0 :(得分:3)

像这样:

public static class EmptyOrNullHelper
{

    public static string EmptyOrNull<T>(this HtmlHelper helper, IQueryable<T> type)
    {
        //Code
    }

}

换句话说,为要在其中一个参数中使用的方法指定泛型参数。只需在声明中正常调用方法,就不需要这样做。