Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
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 } }
つまり、パラメーターの 1 つで使用するメソッドのジェネリック パラメーターを指定します。メソッドが通常どおり呼び出される場所では、これを行う必要はありません。宣言内だけです。