Inheritance trees

  • Thread starter Thread starter alien2_51
  • Start date Start date
A

alien2_51

Does anyone know where I could find documentation on inheritance tress for
objects in the framework..

Example;

ServicedComponent inherits from ContextBoundObject which inherits from
MarshalByRefObject...

I don't know if that the exact flow or not but I'm sure you get the
picture....


TIA

Dan
 
Dan,
In addition to Gabriele's comments:

When you look up ServicedComponent in MSDN it shows you the inheritance
tree, along with derived classes.

http://msdn.microsoft.com/library/d...rpriseServicesServicedComponentClassTopic.asp

Also you can use both Object Browser & Class View in VS.NET to see the
inheritance tree.

Be sure to look at the overview page, not the members page, MSDN defaults to
members page when you use the index...

Hope this helps
Jay
 
Back
Top