Is Object Class, The Root Of All Hierarchies?

2003-04-02 by DevArticles

What is an Object class?
For those who are new to .NET, according to MSDN library - "Object is the ultimate superclass of all classes in the .NET Framework; it is the root of the type hierarchy."


This is the class declaration of the object class

<Serializable>
<ClassInterface(ClassInterfaceType.AutoDual)>
public class object

Click below to read this article at the DevArticles website:

http://www.devarticles.com

Is Object Class the Root of all Hierarchies