I have the following interface in my assembly
IGenericInterface<T1, T2>
and some classed who implement this interface
class FirstClass : IGenericInterface<Cat, Dog>
class SecondClass : IGenericInterface<Horse, Cow>
I need to write something like this using reflection
for each class that implements IGeiericInterface<,>
Console.WriteLine("Class {0} implements with {1}, {2}")
and the output should be
Class FirstClass implements with Cat, Dog
Class SecondClass implements with Horse, Cow