I want to create instances of all classes which are sub classes of a generic base class. I have searched for some time now. Didn't find anything.
public class BaseClass<T> { }
public class CustomSubClass: BaseClass<int> { }
I have problems with the generic type. Anyone who can help me?