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.Drawing.Point
public Equals ( Point other ) : bool
other Point The other System.Drawing.Point to test.
return bool
        public bool Equals(Point other)
        {
            return m_X == other.m_X && m_Y == other.m_Y;
        }

Same methods

Point::Equals ( object obj ) : bool