How can I do what's in the title, with the minimum amount of code, using whatever c# 3.5 syntax (I'm guessing lambda expressions would fit, but I still don't understand them fully)?

In short, I want to iterate through all types that implement a particular interface.

Edit: I wasn't clear. Let me re-phrase my question: How can I, using reflection, get all types that implement an interface with C# 3.5 with the least code, and minimizing iterations

This is what I want to re-write:

foreach (Type t in this.GetType().Assembly.GetTypes())
    if (t is IMyInterface)
        ;
link|improve this question

You're looking for reflection. I'm not sure if lambda expressions would really help you there; but more information is needed in any case: are you looking to find all types that implement an interface within .NET? Or within a particular assembly? – DannySmurf Aug 25 '08 at 20:01
feedback

8 Answers

up vote 116 down vote accepted

min would be this in c# 3.5 :)

var type = typeof(IMyInteraface);
var types = AppDomain.CurrentDomain.GetAssemblies().ToList()
    .SelectMany(s => s.GetTypes())
    .Where(p => type.IsAssignableFrom(p));

Basically, the least amount of iterations will always be:

loop assemblies  
 loop types  
  see if implemented.
link|improve this answer
2  
Excellent, thank you. You won your "accepted answer" back ;) (I only added a "(...) && p.IsInterface == false" (because I need to create instances of those types)) Thanks again – Juan Manuel Aug 25 '08 at 21:02
3  
Any reason you have the ToList() part? The SelectMany extension works on any IEnumerable<T>. – Troels Thomsen May 27 '09 at 7:55
9  
Where(p => type.IsAssignableFrom(p)) can be written asWhere(type.IsAssignableFrom) – graffic Feb 24 '10 at 8:14
5  
Note that the above code will find and include the interface itself. If you don't want that (which is likely), change the where to : .Where(p=>type.IsAssignableFrom(p) && p!=type); – Lee Oades May 12 '10 at 15:12
19  
Come to think of it, if you want to only return classes and not other interfaces derived from the interface, then do this: Where(p=>type.IsAssignableFrom(p) && p.IsClass); – Lee Oades May 12 '10 at 15:26
show 5 more comments
feedback

To find all types in an assembly that implement IFoo interface:

var results = from type in someAssembly.GetTypes()
              where typeof(IFoo).IsAssignableFrom(type)
              select type;

Note that Ryan Rinaldi's suggestion was incorrect. It will return 0 types. You cannot write

where type is IFoo

because type is a System.Type instance, and will never be of type IFoo. Instead, you check to see if IFoo is assignable from the type. That will get your expected results.

Also, Adam Wright's suggestion, which is currently marked as the answer, is incorrect as well, and for the same reason. At runtime, you'll see 0 types come back, because all System.Type instances weren't IFoo implementors.

link|improve this answer
feedback

loop through all loaded assemblies, loop through all their types, and check if they implement the interface.

something like:

Type ti = typeof(IYourInterface);
foreach (Assembly asm in AppDomain.CurrentDomain.GetAssemblies())
{
    foreach (Type t in asm.GetTypes())
    {
        if (ti.IsAssignableFrom(t))
        {
            // here's your type in t
        }
    }
}
link|improve this answer
feedback

Edit: I've just seen the edit to clarify that the original question was for the reduction of iterations / code and that's all well and good as an exercise, but in real-world situations you're going to want the fastest implementation, regardless of how cool the underlying LINQ looks.

Here's my Utils method for iterating through the loaded types. It handles regular classes as well as interfaces, and the excludeSystemTypes option speeds things up hugely if you are looking for implementations in your own / third-party codebase.

public static List<Type> GetSubclassesOf(this Type type, bool excludeSystemTypes)
{
    List<Type> list = new List<Type>();
    IEnumerator enumerator = Thread.GetDomain().GetAssemblies().GetEnumerator();
    while (enumerator.MoveNext())
    {
        try
        {
            Type[] types = ((Assembly) enumerator.Current).GetTypes();
            if (!excludeSystemTypes || (excludeSystemTypes && !((Assembly) enumerator.Current).FullName.StartsWith("System.")))
            {
                IEnumerator enumerator2 = types.GetEnumerator();
                while (enumerator2.MoveNext())
                {
                    Type current = (Type) enumerator2.Current;
                    if (type.IsInterface)
                    {
                        if (current.GetInterface(type.FullName) != null)
                        {
                            list.Add(current);
                        }
                    }
                    else if (current.IsSubclassOf(type))
                    {
                        list.Add(current);
                    }
                }
            }
        }
        catch
        {
        }
    }
    return list;
}

It's not pretty, I'll admit.

link|improve this answer
not pretty indeed – Thunder Jun 9 '11 at 4:10
feedback

The post I linked shows how to load a dll and the reflect over it.

This might not be the smallest implementation but it worked for me. Se: this post

link|improve this answer
feedback

There's no easy way (in terms of performance) to do what you want to do.

Reflection works with assemblys and types mainly so you'll have to get all the types of the assembly and query them for the right interface. Here's an example:

Assembly asm = Assembly.Load("MyAssembly");
Type[] types = asm.GetTypes();
Type[] result = types.where(x => x.GetInterface("IMyInterface") != null);

That will get you all the types that implement the IMyInterface in the Assembly MyAssembly

link|improve this answer
feedback

This worked for me (if you wish you could exclude system types in the lookup):

Type lookupType = typeof (IMenuItem);
IEnumerable<Type> lookupTypes = GetType().Assembly.GetTypes().Where(
        t => lookupType.IsAssignableFrom(t) && !t.IsInterface); 
link|improve this answer
feedback

You could use some LINQ to get the list:

var types = from type in this.GetType().Assembly.GetTypes()
            where type is ISomeInterface
            select type;

But really, is that more readable?

link|improve this answer
2  
It might be more readable, if it worked. Unfortunately, your where clause is checking to see if an instance of the System.Type class implements ISomeInterface, which will never be true, unless ISomeInterface is really IReflect or ICustomAttributeProvider, in which case it will always be true. – Joel Mueller May 29 '09 at 20:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.