0

Is there a way to get a list of the system C# classes which implement a given interface? In particular, I'm interested in IDrawable at present. But I imagine this will come up again, for other interfaces.

EDIT: Preferably in the documentation, not in code as the "possible duplicate" does. To do it in code, I'd have to link all the relevant assemblies. But I don't know which assemblies are relevant.

William Jockusch
  • 26,513
  • 49
  • 182
  • 323

1 Answers1

1

For documentation, the answer appears to be "no". However, if one has linked the appropriate assemblies, one can find the answer in code as described here

Community
  • 1
  • 1
William Jockusch
  • 26,513
  • 49
  • 182
  • 323