vote up 13 vote down star
8

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 the GenericClass ?

t.IsSubclassOf(typeof(GenericClass<>))

is not working.

flag

7 Answers

vote up 20 vote down check

Try this code

static bool IsSubclassOfRawGeneric(Type generic, Type toCheck) {
    while (toCheck != typeof(object)) {
        var cur = toCheck.IsGenericType ? toCheck.GetGenericTypeDefinition() : toCheck;
        if (generic == cur) {
            return true;
        }
        toCheck = toCheck.BaseType;
    }
    return false;
}
link|flag
thank you - this worked perfectly for me – bernhardrusch Jan 19 at 15:18
This is a sweet piece of code, I have to say. The while loop implementation avoids the unnecessary recursion performance hit also. It's an elegant and beautiful solution to a meta-generic question. – EnocNRoll Jan 19 at 18:26
I have added this method to my ReflectionUtils static class in my framework, and I have also adapted it as an extension method for object by defining toCheck within the method as Type toCheck = obj.GetType(); given "this object obj" is the first parameter. – EnocNRoll Jan 23 at 22:22
Perfect - just what I was looking for, thanks Jared. – Paul Suart Jun 9 at 13:23
vote up 1 vote down

Change your code to:

if (t.GetGenericTypeDefinition().IsSubclassOf(typeof(GenericClass<>))

I think that should work. One thing to note - IsSubclassOf returns false if the two types are the same. It also doesn't handle interfaces. you might want to consider

if (typeof(GenericClass<>).IsAssignableFrom(t.GetGenericTypeDefinition())

EDIT: Given Jared's objection, and the possibility of class X : GenericClass<string> it's possible that you'll need to walk the hierarchy of base classes, checking if (type.IsGenericType && t.GetGenericTypeDefinition() == typeof(GenericClass<>)) at each level. (i.e. the code Jared's posted :)

link|flag
That will throw if t is not generic – JaredPar Jan 19 at 14:16
Maybe it will throw, but questioning Type.IsGenericType before does not hurt. – BeowulfOF Nov 13 at 9:36
vote up 0 vote down

JaredPar's code works but only for one level of inheritance. For unlimited levels of inheritance, use the following code

public bool IsTypeDerivedFromGenericType(Type typeToCheck, Type genericType)
{
    if (typeToCheck == typeof(object))
    {
        return false;
    }
    else if (typeToCheck == null)
    {
        return false;
    }
    else if (typeToCheck.IsGenericType && typeToCheck.GetGenericTypeDefinition() == genericType)
    {
        return true;
    }
    else
    {
        return IsTypeDerivedFromGenericType(typeToCheck.BaseType, genericType);
    }
}
link|flag
vote up 4 vote down

(Reposted due to a massive rewrite)

JaredPar's code answer is fantastic, but I have a tip that would make it unnecessary if your generic types are not based on value type parameters. I was hung up on why the "is" operator would not work, so I have also documented the results of my experimentation for future reference. Please enhance this answer to further enhance its clarity.

TIP:

If you make certain that your GenericClass implementation inherits from an abstract non-generic base class such as GenericClassBase, you could ask the same question without any trouble at all like this:

typeof(Test).IsSubclassOf(typeof(GenericClassBase))


IsSubclassOf()

My testing indicates that IsSubclassOf() does not work on parameterless generic types such as

typeof(GenericClass<>)

whereas it will work with

typeof(GenericClass<SomeType>)

Therefore the following code will work for any derivation of GenericClass<>, assuming you are willing to test based on SomeType:

typeof(Test).IsSubclassOf(typeof(GenericClass<SomeType>))

The only time I can imagine that you would want to test by GenericClass<> is in a plug-in framework scenario.


Thoughts on the "is" operator

At design-time C# does not allow the use of parameterless generics because they are essentially not a complete CLR type at that point. Therefore, you must declare generic variables with parameters, and that is why the "is" operator is so powerful for working with objects. Incidentally, the "is" operator also can not evaluate parameterless generic types.

The "is" operator will test the entire inheritance chain, including interfaces.

So, given an instance of any object, the following method will do the trick:

bool IsTypeof<T>(object t)
{
    return (t is T);
}

This is sort of redundant, but I figured I would go ahead and visualize it for everybody.

Given

var t = new Test();

The following lines of code would return true:

bool test1 = IsTypeof<GenericInterface<SomeType>>(t);

bool test2 = IsTypeof<GenericClass<SomeType>>(t);

bool test3 = IsTypeof<Test>(t);

On the other hand, if you want something specific to GenericClass, you could make it more specific, I suppose, like this:

bool IsTypeofGenericClass<SomeType>(object t)
{
    return (t is GenericClass<SomeType>);
}

Then you would test like this:

bool test1 = IsTypeofGenericClass<SomeType>(t);
link|flag
vote up 1 vote down

Here's a little method I created for checking that a object is derived from a specific type. Works great for me!

internal static bool IsDerivativeOf(this Type t, Type typeToCompare)
{
    if (t == null) throw new NullReferenceException();
    if (t.BaseType == null) return false;

    if (t.BaseType == typeToCompare) return true;
    else return t.BaseType.IsDerivativeOf(typeToCompare);
}
link|flag
vote up 0 vote down
Type _type = myclass.GetType();
PropertyInfo[] _propertyInfos = _type.GetProperties();
Boolean _test = _propertyInfos[0].PropertyType.GetGenericTypeDefinition() 
== typeof(List<>);
link|flag
vote up 0 vote down

It might be overkill but I use extension methods like the following. They check interfaces as well as subclasses. It can also return the type that has the specified generic defintion.

E.g. for the example in the question it can test against GenericInterface as well as GenericClass. The returned type can be used with GetGenericArguments to determine that the generic argument type is "SomeType".

public static bool HasGenericDefinition(this Type type, Type definition)
{
    return GetTypeWithGenericDefinition(type, definition) != null;
}

public static Type GetTypeWithGenericDefinition(this Type type, Type definition)
{
    if (type == null)
        throw new ArgumentNullException("type");
    if (definition == null)
        throw new ArgumentNullException("genericTypeDefinition");
    if (!definition.IsGenericTypeDefinition)
        throw new ArgumentException(
            "The definition needs to be a GenericTypeDefinition", "definition");

    if (definition.IsInterface)
        foreach (var interfaceType in type.GetInterfaces())
            if (interfaceType.IsGenericType
                && interfaceType.GetGenericTypeDefinition() == definition)
                return interfaceType;

    for (Type t = type; t != null; t = t.BaseType)
        if (t.IsGenericType
            && t.GetGenericTypeDefinition() == definition)
            return t;

    return null;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.