vote up 1 vote down star
1
    class Foo { }

    class Foo1 : Foo { }

    class Foo2 : Foo { }

How would I be able to get all the classes that use Foo as a base class? The inherited classes aren't necessary in the same assembly.

flag

67% accept rate
at design or run time? If design then you can refer to this question for some tips stackoverflow.com/questions/282377/… – Marek K Nov 3 at 3:48
At run-time, thanks. – Carlsberg Nov 3 at 3:50

1 Answer

vote up 3 vote down check

This is not fast, but as long as Foo is a concrete type (not an interface), then it should work. Foo itself is not returned by this code.

AppDomain.CurrentDomain.GetAssemblies().SelectMany(assembly => assembly.GetTypes()).Where(type => type.IsSubclassOf(typeof(Foo)));
link|flag
I don't think there's any faster way to do this. – SLaks Nov 3 at 4:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.