System.Object Class
Learn about the class all .NET types derive from.
We'll cover the following...
We'll cover the following...
Introduction
All types in .NET, including the ones we create ourselves, inherit from the System.Object class. Even if we don’t state that we want them to inherit from System.Object, our types inherit implicitly. The System.Object class is at the top of the inheritance hierarchy in .NET.
Note: The
objectis an alias forSystem.Object. ...