-1
votes
Getting all types that implement an interface with C# 3.5
You could use some LINQ to get the list:
var types = from type in this.GetType().Assembly.GetTypes()
where type is ISomeInterface
select type;
…
