vote up 2 vote down star

What is the best way to loop through an assembly, and for each class in the assembly list out it's "SuperClass"?

flag

68% accept rate

3 Answers

vote up 1 vote down check

homework?

    Assembly assembly = typeof(DataSet).Assembly; // etc
    foreach (Type type in assembly.GetTypes())
    {
        if (type.BaseType == null)
        {
            Console.WriteLine(type.Name);
        }
        else
        {
            Console.WriteLine(type.Name + " : " + type.BaseType.Name);
        }
    }

note that generics and nested types have funky names, any you might want to use FullName to include the namespace.

link|flag
Nope. Not homework. Survey my 201 questions - not a student. Just your average overworked / underpaid coder. – B. Tyndall Jul 9 at 13:14
vote up 1 vote down

Assembly.GetTypes and Type.BaseType:

Assembly a;
foreach(var type in a.GetTypes()) {
    Console.WriteLine(
        String.Format("{0} : {1}", 
            type.Name, 
            type.BaseType == null ? String.Empty : type.BaseType.Name
        );
}
link|flag
Watch out; interfaces might not have a BaseType; nor "object" – Marc Gravell Jul 9 at 13:11
@Marc: Good catch. – Jason Jul 9 at 13:11
vote up 2 vote down
foreach(Type type in assembly.GetTypes()) {
  var isChild = type.IsSubclassOf(typeof(parentClass))
}

Reference from MSDN.

link|flag
+1 - cool additional info. won't be testing Subclass/Superclass relationships on my current app, but thanks. – B. Tyndall Jul 9 at 13:24
Oh, I read your question wrongly. Glad it helped. – Adrian Godong Jul 9 at 15:32

Your Answer

Get an OpenID
or

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