How to get all implementations of an interface through reflection in C#
|
1
|
|
|
|
|
|
The anwer is this; it searches through the entire application domain -- that is, every assembly currently loaded by your application.
It is used like this;
You may also want this function to find actual concrete types -- ie, filtering out abstracts, interfaces, and generic type definitions.
|
||||
|
|
|
Maybe something like that.... |
||
|
|
|
Have a look at Assembly.GetTypes() method. It returns all the types that can be found in an assembly. All you have to do is to iterate through every returned type and check if it implements neccesary interface. On of the way to do so is using Type.IsAssignableFrom method. Here is the example. myInterface is the interface, implementations of which you are searching for.
I do beleive that it is not a very efficient way to solve your problem, but at least, it is a good place to start. |
|||
|
|
|
|
Do you mean all interfaces a Type implements? Like this:
Hope tha helpts. |
||
|
|
|
|
I want all the classes that implements an interface |
||
|
|
|
|
You have to loop over all assemblies that you are interested in. From the assembly you can get all the types it defines. Note that when you do AppDomain.CurrentDomain.Assemblies you only get the assemblies that are loaded. Assemblies are not loaded until they are needed, so that means that you have to explicitly load the assemblies before you start searching. |
||
|
|
