Skip to Content
C# Cookbook
book

C# Cookbook

by Stephen Teilhet, Jay Hilyard
January 2004
Beginner to intermediate
864 pages
22h 18m
English
O'Reilly Media, Inc.
Content preview from C# Cookbook

12.8. Finding the Subclasses of a Type

Problem

You have a type and you need to find out whether it is subclassed anywhere in an assembly.

Solution

Use the Type.IsSubclassOf method to test all types within a given assembly, which determines whether each type is a subclass of the type specified in the argument to IsSubClassOf:

public static ArrayList GetSubClasses(string asmPath, Type baseClassType)
{
    Assembly asm = Assembly.LoadFrom(asmPath);
    ArrayList subClasses = new ArrayList( );
    if (baseClassType != null)
    {
        foreach(Type type in asm.GetTypes( ))
        {
            if (type.IsSubclassOf(baseClassType))
            {
                subClasses.Add(type);
            }
        }
    }
    else
    {
        throw (new Exception(baseClassType.FullName + 
                        " does not exist in assembly " + asmPath));
    }

    return (subClasses);

The GetSubClasses method accepts an assembly path string and a second string containing a fully qualified base class name. This method returns an ArrayList of Types representing the subclasses of the type passed to the baseClass parameter.

Discussion

The IsSubclassOf method on the Type class allows us to determine whether the current type is a subclass of the type passed in to this method.

To use this method, you could use the following code:

public static void FindSubclassOfType( ) { Process current = Process.GetCurrentProcess( ); // get the path of the current module string asmPath = current.MainModule.FileName; Type type = Type.GetType("CSharpRecipes.Reflection+BaseOverrides"); ArrayList subClasses = GetSubClasses(asmPath,type); // write out the subclasses ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C# Cookbook

C# Cookbook

Joe Mayo
C# Cookbook, 2nd Edition

C# Cookbook, 2nd Edition

Jay Hilyard, Stephen Teilhet
ASP.NET Cookbook

ASP.NET Cookbook

Michael A Kittel, Geoffrey T. LeBlond

Publisher Resources

ISBN: 0596003390Supplemental ContentCatalog PageErrata