AGENT.Contrib.Drawing.Point.Equals C# (CSharp) Method

Equals() public method

Specifies whether this System.Drawing.Point contains the same coordinates as the specified System.Object
public Equals ( object obj ) : bool
obj object The System.Object to test.
return bool
        public override bool Equals(object obj)
        {
            if (ReferenceEquals(null, obj)) return false;
            return obj is Point && Equals((Point)obj);
        }

Same methods

Point::Equals ( Point other ) : bool