var type = typeof(IMyInteraface);
var types = AppDomain.CurrentDomain.GetAssemblies().ToList()
.SelectMany(s => s.GetTypes())
.Where(p => type.IsAssignableFrom(p));
原文地址:http://stackoverflow.com/questions/26733/getting-all-types-that-implement-an-interface-with-c-3-5
如果不满足你的需求,可以自己改造下~
还有个链接,可以参考下:http://www.hanselman.com/blog/DoesATypeImplementAnInterface.aspx
不大明白你的问题呢,还有你的接口是普通接口还是COM接口?
你是想查找所有 实现了 Interface_A 的类型?