It is clear that there is a type Object. And this type includes such methods.
public extern Type GetType(); public virtual bool Equals (object obj); public static bool Equals (object objA, object objB); public static bool ReferenceEquals (object objA, object objB); public virtual int GetHashCode(); public virtual string ToString(); protected override void Finalize(); protected extern object MemberwiseClone(); I would like to understand the difference and scope.
public virtual bool Equals (object obj); public static bool Equals (object objA, object objB); public static bool ReferenceEquals (object objA, object objB); It seems clear, but some kind of mess is still in my head, tell me on the fingers how to understand it.
object, and then already==- tym32167