|
|
System.Object Class |
|
|
Description | |
|
The Object class is the class from which all .Net Framework classes are derived.
It is the root of all types.
It is often used as a generic argument in class methods - all classes are treatable as Object classes.
|
|
Syntax | |
|
|
Methods | |
|
| Equals | Returns true if one object equals another |
| Finalize | A method called when an object is about to be released |
| GetType | Get the class type of the current object |
| MemberwiseClone | Performs a shallow copy of the current object to a new object |
| ReferenceEquals | Determines whether two Objects references are to the same Object |
| ToString | Converts the Object contents into a string representation |
|
|
|
Microsoft MSDN links | |
|
|
|
|
|
|