This documentation is archived and is not being maintained.
Object Members
Visual Studio 2008
Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy.
The Object type exposes the following members.
| Name | Description | |
|---|---|---|
|
Equals | Overloaded. Determines whether two Object instances are equal. |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. |
|
GetHashCode | Serves as a hash function for a particular type. |
|
GetType | Gets the type of the current instance. |
|
MemberwiseClone | Creates a shallow copy of the current Object. |
|
ReferenceEquals | Determines whether the specified Object instances are the same instance. |
|
ToString | Returns a string that represents the current object. |
Show: