I have a generic class in my project with derived classes.
public class GenericClass<T> : GenericInterface<T> { } public class Test : GenericClass<SomeType> { }
Is there any way to find out if a Type object is derived from GenericClass?
t.IsSubclassOf(typeof(GenericClass<>))
does not work.
Try this code