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

Equals() public method

Specifies whether this System.Drawing.Size structure has the same dimensions as the specified System.Drawing.Size structure.
public Equals ( Size other ) : bool
other Size
return bool
        public bool Equals(Size other)
        {
            return m_Width == other.m_Width && m_Height == other.m_Height;
        }

Same methods

Size::Equals ( object obj ) : bool