up vote 36 down vote favorite
14
share [g+] share [fb]

Assume the following type definitions:

public interface IFoo<T> : IBar<T> {}
public class Foo<T> : IFoo<T> {}

How do I find out whether the type Foo implements the generic interface IBar<T> when only the mangled type is available?

link|improve this question

73% accept rate
feedback

8 Answers

up vote 67 down vote accepted

By using the answer from TcKs it can also be done with the following LINQ query:

bool isBar = foo.GetType().GetInterfaces().Any(x =>
  x.IsGenericType &&
  x.GetGenericTypeDefinition() == typeof(IBar<>));
link|improve this answer
This is a very elegant solution! The others I've seen on SO use foreach loops or longer LINQ queries. Keep in mind though that to use this, you need to have .NET framework 3.5. – Daniel T. Nov 10 '09 at 3:25
1  
I recommend you make this an extension method a la bit.ly/ccza8B -- will clean this up quite nicely! – Brad Heller Jul 27 '10 at 23:06
feedback

You have to go up through the inheritance tree and find all the interfaces for each class in the tree, and compare typeof(IBar<>) with the result of calling Type.GetGenericTypeDefinition if the interface is generic. It's all a bit painful, certainly.

See this answer and these ones for more info and code.

link|improve this answer
why not just cast to IBar<SomeClass> and check for null? (I mean casting with 'as' of course) – pablito Feb 2 '09 at 14:04
T is unknown and cannot be cast to a specific type. – sduplooy Feb 2 '09 at 14:06
@sduplooy: maybe I am missing something how can T be unknown? it would compile public class Foo : IFoo<T> {} – pablito Feb 2 '09 at 14:07
@Downvoter: Care to comment? – Jon Skeet Jan 24 '11 at 12:08
feedback
public interface IFoo<T> : IBar<T> {}
public class Foo : IFoo<Foo> {}

var implementedInterfaces = typeof( Foo ).GetInterfaces();
foreach( var interfaceType in implementedInterfaces ) {
    if ( false == interfaceType.IsGeneric ) { continue; }
    var genericType = interfaceType.GetGenericTypeDefinition();
    if ( genericType == typeof( IFoo<> ) ) {
        // do something !
        break;
    }
}
link|improve this answer
1  
Since typeof( Foo ) returns the a System.Type object (describing Foo), the GetType() call will always return the type for System.Type. You should change to typeof(Foo).GetInterfaces() – Michael Meadows Feb 2 '09 at 15:39
2  
if(genericType == typeof(IFoo<>) should be if(genericType == typeof(IBar<>)... – sduplooy Feb 2 '09 at 15:41
@sduplooy: You are right. It was my mistake. – TcKs Feb 2 '09 at 20:07
feedback

As a helper method extension

public static bool Implements<I>(this Type type, I @interface) where I : class  
{
    if(((@interface as Type)==null) || !(@interface as Type).IsInterface)
        throw new ArgumentException("Only interfaces can be 'implemented'.");

    return (@interface as Type).IsAssignableFrom(type);
}

example usage:

var testObject = new Dictionary<int, object>();
result = testObject.GetType().Implements(typeof(IDictionary<int, object>)); // true!
link|improve this answer
1  
"IsAssignableFrom" was exactly what I was looking for - thanks – Jesper Oct 2 '10 at 14:48
feedback

You have to check against a constructed type of the generic interface.

You will have to do something like this:

foo is IBar<String>

because IBar<String> represents that constructed type. The reason you have to do this is because if T is undefined in your check, the compiler doesn't know if you mean IBar<Int32> or IBar<SomethingElse>.

link|improve this answer
feedback

First of all public class Foo : IFoo<T> {} does not compile because you need to specify a class instead of T, but assuming you do something like public class Foo : IFoo<SomeClass> {}

then if you do

Foo f = new Foo();
IBar<SomeClass> b = f as IBar<SomeClass>;

if(b != null)  //derives from IBar<>
    Blabla();
link|improve this answer
feedback

I'm using a slightly simpler version of @GenericProgrammers extension method:

public static bool Implements<TInterface>(this Type type) where TInterface : class {
    var interfaceType = typeof(TInterface);

    if (!interfaceType.IsInterface)
        throw new InvalidOperationException("Only interfaces can be implemented.");

    return (interfaceType.IsAssignableFrom(type));
}

Usage:

    if (!featureType.Implements<IFeature>())
        throw new InvalidCastException();
link|improve this answer
feedback

Is there something wrong with the following?

bool implementsGeneric = (anObject.Implements("IBar`1") != null);

For extra credit you could catch AmbiguousMatchException if you wanted to provide a specific generic-type-parameter with your IBar query.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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