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?
|
3
|
Assume the following type definitions:
How do I find out whether the type
|
|||
|
|
|
|
By using the answer from TcKs it can also be done with the following LINQ query:
|
|||
|
|
|
You have to go up through the inheritance tree and find all the interfaces for each class in the tree, and compare See this answer and these ones for more info and code. |
||||||
|
|
|
|
||||||||
|
|
|
You have to check against a constructed type of the generic interface. You will have to do something like this:
because |
||
|
|
|
|
First of all then if you do
|
||
|
|
|
|
As a helper method extension
example usage:
|
||
|
|