Reputation: 2222
Just a quick one... How do I determine what interfaces a type implements?
Cheers Anthony
Upvotes: 0
Views: 193
Reputation: 31232
You can call the GetInterfaces
method.
Type[] interfaceTypes = myType.GetInterfaces();
Upvotes: 3