In this article we will walk through and understand each function of the Object class. System.Object is known as the mother class of all the managed classes. All the classes are inherited from System.Object. It is base type for all the managed classes. So it defines the base behavior of all the managed classes.System.Object class contains the following functions. Let us examine each function one by one. For all the following explanations we will use Student class. Student class is as below. class Student { public string RollNumber { get; set; } public string Name { get; set; } }Object.GetHashCode method
System.Object: a look on mother of all managed classes
Common Language Integration in .Net Framework