Is there a better (more performant or nicer code ;) way to find all derived Types of a Type? Currently im using something like:
I was wondering if theres a better way todo this?
I once used this Linq-method to get all types inheriting from a base type B:
var listOfBs = ( from domainAssembly in AppDomain.CurrentDomain.GetAssemblies() // alternative: from domainAssembly in domainAssembly.GetExportedTypes() from assemblyType in domainAssembly.GetTypes() where typeof(B).IsAssignableFrom(assemblyType) // alternative: where assemblyType.IsSubclassOf(typeof(B)) // alternative: && ! assemblyType.IsAbstract select assemblyType).ToArray();
EDIT: As this still seems to get more rep (thus more views), let me add some more details:
domainAssembly.GetExportedTypes()
to retrieve only publicly visible types (if that's all you need).Type.IsAssignable
will also get the original (non-derived) type. (Type.IsSubclassOf
will not, but Type.IsSubclassOf
will not work if the base type is an interface).&& ! assemblyType.IsAbstract
. (Note that all interfaces are considered abstract, see MSDN.)I'm pretty sure the method you suggested is going to be the easier way to find all derived types. Parent classes don't store any information about what their sub-classes are (it would be quite silly if they did), which means there's no avoiding a search through all the types here.
Only recommendation is to use the Type.IsSubclassOf
method instead of Type.IsAssignable
in order to check whether a particular type is derived from another. Still, perhaps there is a reason you need to use Type.IsAssignable
(it works with interfaces, for example).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With