473,398 Members | 2,120 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

class tree

does anyone know where i could find on the net a diagram or set of diagrams
illustrating the class heirarchy tree of c#/.NET. It'd be interesting too
peruse i think.

Cheers
dave
Nov 16 '05 #1
7 4524
hi david,

Do you have visual studio installed in your computer. If so, then click on
View menu and then click on Object browser. Or simplye press Ctrl+Alt+J

If you want learn programmign in .Net and test its real muscle, then read
about reflections and try to create your own application to get a hierarchy.

happy programming :)

pradeep TP

"David Sobey" wrote:
does anyone know where i could find on the net a diagram or set of diagrams
illustrating the class heirarchy tree of c#/.NET. It'd be interesting too
peruse i think.

Cheers
dave

Nov 16 '05 #2
David Sobey wrote:
does anyone know where i could find on the net a diagram or set of diagrams
illustrating the class heirarchy tree of c#/.NET. It'd be interesting too
peruse i think.


Have a look at these:
http://msdn.microsoft.com/vstudio/pr.../download.aspx

--
Fabio Marini
To reply: news [at] mamakin1976 [dot] plus [dot] com
Nov 16 '05 #3
I've seen these before actually. It would be nice to be able to buy the
posters printed, I sure someone does them.

--
Terry Burns

http://TrainingOn.net

"Fabio" <us**@domain.invalid> wrote in message
news:eK**************@TK2MSFTNGP12.phx.gbl...
David Sobey wrote:
does anyone know where i could find on the net a diagram or set of
diagrams illustrating the class heirarchy tree of c#/.NET. It'd be
interesting too peruse i think.


Have a look at these:
http://msdn.microsoft.com/vstudio/pr.../download.aspx

--
Fabio Marini
To reply: news [at] mamakin1976 [dot] plus [dot] com

Nov 16 '05 #4
Talking about Reflection, Lutz Roeder's .NET Reflector is probably the best
tool out there that makes use this technology to "reflect" upon assemblies.
It has a built-in disassembler which allows you to open any assembly (even a
Microsoft one) and watch the actual code written in it. Really nice! Must
have....

http://www.aisto.com/roeder/dotnet/D...File=Reflector

HTH, Metallikanz!
"pradeep" <pr*****@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.com...
hi david,

Do you have visual studio installed in your computer. If so, then click on
View menu and then click on Object browser. Or simplye press Ctrl+Alt+J

If you want learn programmign in .Net and test its real muscle, then read
about reflections and try to create your own application to get a
hierarchy.

happy programming :)

pradeep TP

"David Sobey" wrote:
does anyone know where i could find on the net a diagram or set of
diagrams
illustrating the class heirarchy tree of c#/.NET. It'd be interesting too
peruse i think.

Cheers
dave

Nov 16 '05 #5
You can order the posters here.
http://msdn.microsoft.com/vstudio/productinfo/posters/

--
Tim Wilson
..Net Compact Framework MVP

"OHM ( Terry Burns )" <me@mine.com> wrote in message
news:ep*************@TK2MSFTNGP10.phx.gbl...
I've seen these before actually. It would be nice to be able to buy the
posters printed, I sure someone does them.

--
Terry Burns

http://TrainingOn.net

"Fabio" <us**@domain.invalid> wrote in message
news:eK**************@TK2MSFTNGP12.phx.gbl...
David Sobey wrote:
does anyone know where i could find on the net a diagram or set of
diagrams illustrating the class heirarchy tree of c#/.NET. It'd be
interesting too peruse i think.


Have a look at these:
http://msdn.microsoft.com/vstudio/pr.../download.aspx

--
Fabio Marini
To reply: news [at] mamakin1976 [dot] plus [dot] com


Nov 16 '05 #6
> You can order the posters here.
http://msdn.microsoft.com/vstudio/productinfo/posters/


Great. I did not know this option. Its probably worth it to wait for whidbey
to be released and then get the whole set. Seems like a good deal for
$12+SH.

--
Ajay Kalra [MVP - VC++]
aj*******@yahoo.com


Nov 16 '05 #7
Useful info - Thanks

--
OHM ( Terry Burns )

http://TrainingOn.net

"Tim Wilson" <TIM(UNDERSCORE)WILSON(AT)ROGERS(PERIOD)COM> wrote in message
news:uQ**************@TK2MSFTNGP15.phx.gbl...
You can order the posters here.
http://msdn.microsoft.com/vstudio/productinfo/posters/

--
Tim Wilson
.Net Compact Framework MVP

"OHM ( Terry Burns )" <me@mine.com> wrote in message
news:ep*************@TK2MSFTNGP10.phx.gbl...
I've seen these before actually. It would be nice to be able to buy the
posters printed, I sure someone does them.

--
Terry Burns

http://TrainingOn.net

"Fabio" <us**@domain.invalid> wrote in message
news:eK**************@TK2MSFTNGP12.phx.gbl...
> David Sobey wrote:
>> does anyone know where i could find on the net a diagram or set of
>> diagrams illustrating the class heirarchy tree of c#/.NET. It'd be
>> interesting too peruse i think.
>
> Have a look at these:
> http://msdn.microsoft.com/vstudio/pr.../download.aspx
>
> --
> Fabio Marini
> To reply: news [at] mamakin1976 [dot] plus [dot] com



Nov 16 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Jonathan Wilson | last post by:
I am looking for a C++ class library that can store data in a tree. The class library needs to be: 1.Available under a licence like GPL, LGPL or BSD so I can use it in my GPL program and 2.Usable...
6
by: Gernot Frisch | last post by:
I want to have a class that provides 2 methods with the same name (do1, do2) that cann be called from a function (Fkt) but Fkt does not know/care about it's type. class base { public:...
1
by: Jon Slaughter | last post by:
I've managed to put together a template class that basicaly creates a recursive tree that lets you easily specify the "base" class of that tree and and ending notes and lets you stop the recursive...
4
by: Rui Maciel | last post by:
I'm trying to write a tree class and I've just stumbled on a compiling problem. The compiler throws an error on a piece of code which to my eyes it is error-free. Can anyone help me with this? ...
1
by: hn.ft.pris | last post by:
I have the following code: Tree.h defines a simple binary search tree node structure ########## FILE Tree.h ################ #ifndef TREE_H #define TREE_H //using namespace std; template...
3
by: antred | last post by:
Hello everyone, While working on a program I encountered a situation where I'd construct a largish data structure (a tree) from parsing a host of files and would end up having to throw away...
9
by: Pep | last post by:
Hi anyone know of a C++ class capable of parsing a XML stream in to elements? I have tried using the xerces class but unfortunately this requires me to do a lot of complex processing to isolate...
3
by: empiresolutions | last post by:
I'm trying to build my first PHP Class. After days of tweaking, im lost. I am used to working with functions and arrays, but wrapping them in classes is confusing me. The following code is to...
1
by: empiresolutions | last post by:
Why is this code throwing the following errors? Thanks. <? class DirTree { /** * Get a tree of folders and files from a spec dir * @returns An ArrayCollection of Tree */
17
by: VanKha | last post by:
After reading some books in c++,I know that it is better to hide the data members ,but sometimes the rule makes everything messy and terrible ! For example class Node{ private: int key; ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.