AGENT.Contrib.Drawing.Size.Equals C# (CSharp) 메소드

Equals() 공개 메소드

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
리턴 bool
        public bool Equals(Size other)
        {
            return m_Width == other.m_Width && m_Height == other.m_Height;
        }

Same methods

Size::Equals ( object obj ) : bool