public static class EmptyOrNullHelper
public static string EmptyOrNull(this HtmlHelper helper, IQueryable(T) type)
{
//Code
}
}
答案 0 :(得分:3)
像这样:
public static class EmptyOrNullHelper
{
public static string EmptyOrNull<T>(this HtmlHelper helper, IQueryable<T> type)
{
//Code
}
}
换句话说,为要在其中一个参数中使用的方法指定泛型参数。只需在声明中正常调用方法,就不需要这样做。