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 <T extends java.util.EventListener> T[] getListeners(final Class<T> listenerClass) { ... }
上記のJavaジェネリックと同等のc#ジェネリック表記は何ですか?
パラメータlistenerClassは、オブジェクトではなくタイプになります。ただし、オブジェクトTは特定の階層に属している必要があります。
public T[] GetListeners<T>() where T : EventListener { }