views:

88

answers:

3

Hey guys

Just a quick one... How do I determine what interfaces a type implements?

Cheers Anthony

+4  A: 

Type.GetInterfaces

Greg Beech
+2  A: 

You can call the GetInterfaces method.

Type[] interfaceTypes = myType.GetInterfaces();
Razzie
A: 
Type.GetInterfaces()

:)

cwap