Under a given namespace, I have a set of classes which implement an interface. Let's call it ISomething. I have another class (let's call it CClass) which knows about ISomething but doesn't know about the classes which implement that interface.
I would like that CClass to look for all the implementation of ISomething, intanciate an instance of it and execute the method.
Does anybody have an idea on how to do that with C# 3.5?
Thanks.