Creating Understanding and Educating Programmers, Developers and Technical Communities, one post at a time.

Saturday, April 18, 2009

System.Object

All .Net types are derived from System.Object. Therefore every object of every type has a minimum set of method from System.Object class.
More specifically, System.Object offers following public methods.
  • Equals
  • GetHashCode
  • ToString
  • GetType

Moreover, it also allow access to protected methods.
  • MemberwiseClone
  • Finalize

No comments:

Post a Comment