关于C#:获取实现接口的所有类型

Getting all types that implement an interface

使用反射,我如何才能得到所有实现C 3.0/.NET 3.5接口的类型,代码最少,迭代最少?

这就是我想要重写的内容:

1
2
3
foreach (Type t in this.GetType().Assembly.GetTypes())
    if (t is IMyInterface)
        ; //do stuff


我的应该是C 3.0中的这个。

1
2
3
4
var type = typeof(IMyInterface);
var types = AppDomain.CurrentDomain.GetAssemblies()
    .SelectMany(s => s.GetTypes())
    .Where(p => type.IsAssignableFrom(p));

基本上,最少的迭代次数总是:

1
2
3
loop assemblies  
 loop types  
  see if implemented.