CodeGo.net>如何使HTML帮助程序支持泛型?

前端之家收集整理的这篇文章主要介绍了CodeGo.net>如何使HTML帮助程序支持泛型? 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


public static class EmptyOrNullHelper

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

}

最佳答案
像这样:

public static class EmptyOrNullHelper
{

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

}

换句话说,在其参数之一中为要使用的方法指定通用参数.您无需在通常在声明中调用方法的地方执行此操作.

原文链接:https://www.f2er.com/html/530678.html

猜你在找的HTML相关文章