Get all derived types of a type

C#.Net

C# Problem Overview


Is there a better (more performant or nicer code ;) way to find all derived Types of a Type? Currently im using something like:

  1. get all types in used Assemblies
  2. check my type with all those types if it is 'IsAssignable'

I was wondering if theres a better way todo this?

C# Solutions


Solution 1 - C#

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 type in domainAssembly.GetTypes()
                where typeof(B).IsAssignableFrom(type)
				// alternative: && type != typeof(B)
                // alternative: && ! type.IsAbstract
                // alternative: where type.IsSubclassOf(typeof(B))
                select type).ToArray();

EDIT: As this still seems to get more rep (thus more views), let me add a fluent version and some more details:

   var listOfBs = AppDomain.CurrentDomain.GetAssemblies()
                // alternative: .GetExportedTypes()
                .SelectMany(domainAssembly => domainAssembly.GetTypes())
                .Where(type => typeof(B).IsAssignableFrom(type)
                // alternative: => type.IsSubclassOf(typeof(B))
				// alternative: && type != typeof(B)
                // alternative: && ! type.IsAbstract
                ).ToArray();

Details:

Solution 2 - C#

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).

Solution 3 - C#

The only optimization you can squeeze out of this is to use Assembly.GetExportedTypes() to retrieve only publicly visible types if that's the case. Other than that, there's no way to speed things up. LINQ may help with readability side of things, but not performance-wise.

You can do some short-circuiting to avoid unnecessary calls to IsAssignableFrom which is, according to Reflector, quite expensive one, by first testing whether the type in question is of required "class". That is, you're searching for classes only, there's no point in testing enums or arrays for "assignability".

Solution 4 - C#

I think there is no better or direct way.

Better: Use IsSubclassOf instead of IsAssignable.

Solution 5 - C#

Asuming baseType contains a System.Type object that you want to check against and matchType contains a System.Type object with the type of your current iteration (through a foreach-loop or whatever):

If you want to check wheather matchType is derived from the class represented by baseType I'd use

matchType.IsSubclassOf(baseType)

And if you want to check wheather matchType implements the interface represented by baseType I'd use

matchType.GetInterface(baseType.ToString(), false) != null

Of course I'd store baseType.ToString() as a global variable so I wouldn't need to call it all the time. And since you probably would need this in a context where you have a lot of types, you could also consider using the System.Threading.Tasks.Parallel.ForEach-Loop to iterate through all your types...

Solution 6 - C#

If you're just interested in browsing, then .NET Reflector has the ability to do this. However, it isn't something that's really feasible. Would you want all types that are in the currently loaded assemblies? Assemblies referenced by the executing assembly? There are many different ways to obtain a list of Types, and writing something that would account for (and provide options for) would be a pretty big cost with relatively low benefit.

What are you trying to do? There's likely a better (or at least more efficient) way to accomplish it.

Solution 7 - C#

I ended up using the code that the top answer gave. Only thing is I wanted the code to be more readable so I wrote basically the same thing but like this instead:

var derived_types = new List<Type>();
foreach (var domain_assembly in AppDomain.CurrentDomain.GetAssemblies())
{
  var assembly_types = domain_assembly.GetTypes()
    .Where(type => type.IsSubclassOf(typeof(MyType)) && !type.IsAbstract);

  derived_types.AddRange(assembly_types);
}

In my case I used type.IsSubClassOf(MyType) because I only wanted derived types excluding the base class like mentioned above. I also needed the derived types not to be abstract (!type.IsAbstract) so I am also excluding derived abstract classes.

Solution 8 - C#

Just create a static dictionary of derived types on start and do lookup with that. Eg. public static Dictionay<Type, Type[]> DerivedTypes { get;set; } where Type is any type you want to include in the search and Type[] is a list of derived types. Fill the dictionary up when app starts and use it during the whole life of the app.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBluenuanceView Question on Stackoverflow
Solution 1 - C#Yahoo SeriousView Answer on Stackoverflow
Solution 2 - C#NoldorinView Answer on Stackoverflow
Solution 3 - C#Anton GogolevView Answer on Stackoverflow
Solution 4 - C#DarioView Answer on Stackoverflow
Solution 5 - C#Fredrik RaschView Answer on Stackoverflow
Solution 6 - C#Adam RobinsonView Answer on Stackoverflow
Solution 7 - C#Jordan WebsterView Answer on Stackoverflow
Solution 8 - C#ADM-ITView Answer on Stackoverflow