Do you mean getting all interfaces in a particular assembly?
Have a look at Assembly.GetTypes() method. It returns all the types that can be found in an assembly. All you have to do is to iterate through every returned type and check its Type.IsInterface propertyif it implements neccesary interface.
On of the way to do so is using Type.IsAssignableFrom method.
Here is the example. myInterface is the interface, implementations of which you are searching for.
Assembly myAssembly;
Type myInterface;
foreach (Type type in myAssembly.GetTypes())
{
if (myInterface.IsAssignableFrom(type))
Console.WriteLine(type.FullName);
}
I do beleive that it is not a very efficient way to solve your problem, but at least, it is a good place to start.
