vote up 4 vote down star
1

What's the simplest way of testing if an object implements a given interface?

Is it possible to test if a class implements a given interface?

flag

5 Answers

vote up 18 vote down check
if (object is IBlah)

or

IBlah myTest = originalObject as IBlah

if (myTest != null)
link|flag
+1 The second one is better because you will probably end up needing to cast afterward with the first one thus giving you two casts ("is" and then an explicit cast). With the second approach you only cast once. – Andrew Hare Jan 4 '09 at 6:02
vote up 5 vote down

Using the is or as operators is the correct way if you know the interface type at compile time and have an instance of the type you are testing. Something that no one else seems to have mentioned is Type.IsAssignableFrom:

if( typeof(IMyInterface).IsAssignableFrom(someOtherType) )
{
}

I think this is much neater than looking through the array returned by GetInterfaces and has the advantage of working for classes as well.

link|flag
vote up 4 vote down

For the instance:

if (obj is IMyInterface) {}

For the class:

Check if typeof(MyClass).GetInterfaces() contains the interface.

link|flag
if (Array.IndexOf(typeof(MyClass).GetInterfaces(), typeof(IMyInterface)) != -1) { ... } – Constantin Jan 4 '09 at 3:07
or: if(typeof(MyClass).GetInterfaces().Contains(typeof(IMyInterface))) {...} – Lance Fisher Jan 4 '09 at 3:12
vote up 0 vote down

In addition to testing using the "is" operator, you can decorate your methods to make sure that variables passed to it implement a particular interface, like so:

public static void BubbleSort<T>(ref IList<T> unsorted_list) where T : IComparable
{
     //Some bubbly sorting
}

I'm not sure which version of .Net this was implemented in so it may not work in your version.

link|flag
.net 2.0 added generics. – Robert C. Barth Jan 7 '09 at 0:08
vote up -1 vote down

This should work :

MyInstace.GetType().GetInterfaces();

But nice too :

if (obj is IMyInterface)

Or even (not very elegant) :

if (obj.GetType() == typeof(IMyInterface))
link|flag
Checking for equality to typeof(IMyInterface) will always fail. Downvoted. – Jay Bazuzi Jan 4 '09 at 2:07
Right. There are no instances of an interface. – Rauhotz Jan 4 '09 at 10:37

Your Answer

Get an OpenID
or

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