class object
Supports all classes in the .NET class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all .NET classes; it is the root of the type hierarchy.
public bool Equals( object obj )
Determines whether the specified object is equal to the current object.
objThe object to compare with the current object.- Returns if the specified object is equal to the current object; otherwise, .
public static bool Equals( object objA, object objB )
Determines whether the specified object instances are considered equal.
objAThe first object to compare.objBThe second object to compare.- Returns if the objects are considered equal; otherwise, . If both and are null, the method returns .
public static bool ReferenceEquals( object objA, object objB )
Determines whether the specified instances are the same instance.
objAThe first object to compare.objBThe second object to compare.- Returns if is the same instance as or if both are null; otherwise, .
public Type GetType( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public object( )
😔 No documentation found.