You would know that System.Object is the parent class of all .NET classes; In other words all types in .NET (whether implicit, explicit, or user-created) derive from the System.Object class. What are the various methods provided to System.Object’s deriving classes/types?
System.Object provides the following important methods, among others: ToString—Returns a string that represents the current object both overrides of Equals(object), Equals(object, object) GetHashCode Finalize GetType ReferenceEquals MemberwiseClone Most of these methods provide the basic implementation required of any type that a developer will work with in the .NET stack. In .NET, the System.Object class provides … Read more