I need a method which takes a parameter as an Interface name and the return type should be list of all the classes that implement the interface using reflection.
List all the classes that implement a specific interface
My requirement is something as below:

VulpesPosted Aug 12, 2012, 10:47 AM
Now create a console app from the following code and place the dll in the executable's folder:
The output should be:
ClassA
ClassD
Notice that ClassC is returned because it implements IFace by virtue of deriving from ClassA.
Akkiraju IvaturiPosted Aug 12, 2012, 4:05 PM