Connecting Tech Pros Worldwide Forums | Help | Site Map

Inheritance map over all the classes in .NET

Tony Johansson
Guest
 
Posts: n/a
#1: Jul 7 '08
Hello!

I would like to have a map over the inheritance hierarchy that exist in
..NET.

Can this be found somewhere on the NET.

//Tony



Marc Gravell
Guest
 
Posts: n/a
#2: Jul 7 '08

re: Inheritance map over all the classes in .NET


All? That is a very big list... personally I generally find "Object
Browser" or "Lutz Roeder's .NET Reflector" give me what I need - was
there something specific you were after?

Marc
Tony Johansson
Guest
 
Posts: n/a
#3: Jul 7 '08

re: Inheritance map over all the classes in .NET


Hello!

For example get a list to print out for the Form class up to the root object
which is object

//Tony

"Marc Gravell" <marc.gravell@gmail.comskrev i meddelandet
news:ukyUNDE4IHA.3484@TK2MSFTNGP05.phx.gbl...
Quote:
All? That is a very big list... personally I generally find "Object
Browser" or "Lutz Roeder's .NET Reflector" give me what I need - was there
something specific you were after?
>
Marc

Peter Duniho
Guest
 
Posts: n/a
#4: Jul 7 '08

re: Inheritance map over all the classes in .NET


On Mon, 07 Jul 2008 09:37:28 -0700, Tony Johansson
<johansson.andersson@telia.comwrote:
Quote:
For example get a list to print out for the Form class up to the root
object
which is object
The main class page on MSDN for each class provides exactly that
information. For example:
http://msdn.microsoft.com/en-us/libr...orms.form.aspx

At the bottom of that page, is a complete inheritance list for Form and
its base classes, and its immediate descendants.

Every .NET class has a similar list on its main documentation page.

Pete
Jeff Winn
Guest
 
Posts: n/a
#5: Jul 8 '08

re: Inheritance map over all the classes in .NET


If you need the class hierarchy in a specific layout for viewing, just build
something yourself to do it using reflection, it wouldn't be that difficult.
I usually use a mix of MSDN documentation and Reflector if I need to know
something.

"Peter Duniho" <NpOeStPeAdM@nnowslpianmk.comwrote in message
news:op.udxk6vg98jd0ej@petes-computer.local...
Quote:
On Mon, 07 Jul 2008 09:37:28 -0700, Tony Johansson
<johansson.andersson@telia.comwrote:
>
Quote:
>For example get a list to print out for the Form class up to the root
>object
>which is object
>
The main class page on MSDN for each class provides exactly that
information. For example:
http://msdn.microsoft.com/en-us/libr...orms.form.aspx
>
At the bottom of that page, is a complete inheritance list for Form and
its base classes, and its immediate descendants.
>
Every .NET class has a similar list on its main documentation page.
>
Pete
Closed Thread