Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using reflection, how can I get all types that implement an interface with C# 3.0/.NET 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)
        ; //do stuff
share|improve this question
Does the example code works? I've got false negatives with your if condition. – Emperor Orionii Dec 15 '12 at 15:20
There is no C# 3.5. I edited the title – nawfal Apr 28 at 6:05

10 Answers

up vote 201 down vote accepted

Mine would be this in c# 3.0 :)

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.
share|improve this answer
3  
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 – jmfsg Aug 25 '08 at 21:02
6  
Any reason you have the ToList() part? The SelectMany extension works on any IEnumerable<T>. – Troels Thomsen May 27 '09 at 7:55
13  
Where(p => type.IsAssignableFrom(p)) can be written asWhere(type.IsAssignableFrom) – graffic Feb 24 '10 at 8:14
11  
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
35  
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 7 more comments

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.

share|improve this answer

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
        }
    }
}
share|improve this answer

This worked for me. It loops though the classes and checks to see if they are derrived from myInterface

 foreach (Type mytype in System.Reflection.Assembly.GetExecutingAssembly().GetTypes().Where(mytype => mytype .GetInterfaces().Contains(typeof(myInterface))))
 {
    //do stuff
 }

Ben

share|improve this answer

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.

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

Other answers here use IsAssignableFrom. You can also use FindInterfaces from the System namespace, as described here.

Here's an example that checks all assemblies in the currently executing assembly's folder, looking for classes that implement a certain interface (avoiding LINQ for clarity).

    static void Main()
    {
        const string qualifiedInterfaceName = "Interfaces.IMyInterface";
        var interfaceFilter = new TypeFilter(InterfaceFilter);

        var path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

        var di = new DirectoryInfo(path);
        foreach (var file in di.GetFiles("*.dll"))
        {
            try
            {
                var nextAssembly = Assembly.ReflectionOnlyLoadFrom(file.FullName);

                foreach (var type in nextAssembly.GetTypes())
                {
                    var myInterfaces = type.FindInterfaces(interfaceFilter, qualifiedInterfaceName);
                    if (myInterfaces.Length > 0)
                    {
                        // This class implements the interface
                    }
                }
            }
            catch (BadImageFormatException)
            {
                // Not a .net assembly  - ignore
            }                
        }
    }

    public static bool InterfaceFilter(Type typeObj, Object criteriaObj)
    {
        return typeObj.ToString() == criteriaObj.ToString();
    }

You can set up a list of interfaces if you want to match more than one.

In terms of "minimum" code, this can be reduced, e.g. by using LINQ in the foreach. Bear in mind that "minimal" doesn't necessarily mean efficient, or easily debugged, or easily understood by someone else...

share|improve this answer
This one looks for string interface name which is what I was looking for. – senthil Jan 9 at 16:54

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

share|improve this answer

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); 
share|improve this answer

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

share|improve this answer

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?

share|improve this answer
3  
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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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