This page lists the publicly accessible methods of the System.Object
class, the root of the .NET class hierarchy.
Determines whether the specified object is equal to the current object.
public bool Equals(object obj)
obj
: The object to compare with the current object.Serves as the default hash function.
public int GetHashCode()
Gets the Type of the current instance.
public Type GetType()
Determines whether the specified Object instances are equal.
public static bool ReferenceEquals(object objA, object objB)
objA
: The first object to compare.objB
: The second object to compare.Returns a string that represents the current object.
public string ToString()
Allows an object to attempt to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
protected void Finalize()
Creates a shallow copy of the current Object.
protected object MemberwiseClone()
Note: This documentation is a representative example and may not include all methods or details present in official MSDN documentation.