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?
|
Assume the following type definitions:
How do I find out whether the type
| ||||
|
feedback
|
|
By using the answer from TcKs it can also be done with the following LINQ query:
| |||||||||||||
feedback
|
|
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. | |||||||||
feedback
|
| |||||||||||
feedback
|
|
As a helper method extension
example usage:
| |||||||
feedback
|
|
You have to check against a constructed type of the generic interface. You will have to do something like this:
because | |||
|
feedback
|
|
First of all then if you do
| |||
|
feedback
|
|
I'm using a slightly simpler version of @GenericProgrammers extension method:
Usage:
| |||
|
feedback
|
|
Is there something wrong with the following?
For extra credit you could catch AmbiguousMatchException if you wanted to provide a specific generic-type-parameter with your IBar query. | |||
|
feedback
|
|
To tackle the type system completely, I think you need to handle recursion, e.g.
| ||||
|
feedback
|