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

Equals() public method

Tests whether the System.Drawing.Rectangle structure has the same location and size of this System.Drawing.Rectangle structure.
public Equals ( Rectangle other ) : bool
other Rectangle
return bool
        public bool Equals(Rectangle other)
        {
            return m_X == other.m_X && m_Y == other.m_Y && m_Width == other.m_Width && m_Height == other.m_Height;
        }

Same methods

Rectangle::Equals ( object obj ) : bool