Implementations of interface through Reflection - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T00:17:33Z http://stackoverflow.com/feeds/question/80247 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection 1 Implementations of interface through Reflection Chethan 2008-09-17T05:20:42Z 2008-09-18T09:45:30Z <p>How to get all implementations of an interface through reflection in C#</p> http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80325#80325 0 Answer by AlexDuggleby for Implementations of interface through Reflection AlexDuggleby 2008-09-17T05:36:34Z 2008-09-17T05:36:34Z <p>Do you mean all interfaces a Type implements?</p> <p>Like this:</p> <pre><code>ObjX foo = new ObjX(); Type tFoo = foo.GetType(); Type[] tFooInterfaces = tFoo.GetInterfaces(); foreach(Type tInterface in tFooInterfaces) { // do something with it } </code></pre> <p>Hope tha helpts.</p> http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80343#80343 2 Answer by Anton for Implementations of interface through Reflection Anton 2008-09-17T05:43:42Z 2008-09-17T05:50:52Z <p>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.</p> <p>On of the way to do so is using Type.IsAssignableFrom method.</p> <p>Here is the example. myInterface is the interface, implementations of which you are searching for.</p> <pre><code>Assembly myAssembly; Type myInterface; foreach (Type type in myAssembly.GetTypes()) { if (myInterface.IsAssignableFrom(type)) Console.WriteLine(type.FullName); } </code></pre> <p>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.</p> http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80371#80371 0 Answer by Chethan for Implementations of interface through Reflection Chethan 2008-09-17T05:48:59Z 2008-09-17T05:48:59Z <p>I want all the classes that implements an interface</p> http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80375#80375 2 Answer by driscadam for Implementations of interface through Reflection driscadam 2008-09-17T05:49:54Z 2008-09-17T05:49:54Z <pre><code>Assembly assembly = Assembly.GetExecutingAssembly(); List&lt;Type&gt; types = assembly.GetTypes(); List&lt;Type&gt; childTypes = new List&lt;Type&gt;(); foreach (Type type in Types) { foreach (Type interfaceType in type.GetInterfaces()) { if (interfaceType.Equals(typeof([yourinterfacetype)) { childTypes.Add(type) break; } } } </code></pre> <p>Maybe something like that....</p> http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80467#80467 9 Answer by Steve Cooper for Implementations of interface through Reflection Steve Cooper 2008-09-17T06:11:51Z 2008-09-17T06:11:51Z <p>The anwer is this; it searches through the entire application domain -- that is, every assembly currently loaded by your application.</p> <pre><code> /// &lt;summary&gt; /// Returns all types in the current AppDomain implementing the interface or inheriting the type. /// &lt;/summary&gt; public static IEnumerable&lt;Type&gt; TypesImplementingInterface(Type desiredType) { return AppDomain .CurrentDomain .GetAssemblies() .SelectMany(assembly =&gt; assembly.GetTypes()) .Where(type =&gt; desiredType.IsAssignableFrom(type)); } </code></pre> <p>It is used like this;</p> <pre><code>var disposableTypes = TypesImplementingInterface(typeof(IDisposable)); </code></pre> <p>You may also want this function to find actual concrete types -- ie, filtering out abstracts, interfaces, and generic type definitions.</p> <pre><code> public static bool IsRealClass(Type testType) { return testType.IsAbstract == false &amp;&amp; testType.IsGenericTypeDefinition == false &amp;&amp; testType.IsInterface == false; } </code></pre> http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/81707#81707 0 Answer by Hallgrim for Implementations of interface through Reflection Hallgrim 2008-09-17T10:12:29Z 2008-09-17T10:12:29Z <p>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.</p>