Treefrog.Framework.Imaging.Rectangle.Equals C# (CSharp) Method

Equals() public method

public Equals ( Rectangle other ) : bool
other Rectangle
return bool
        public bool Equals(Rectangle other)
        {
            return this.X == other.X
                && this.Y == other.Y
                && this.Width == other.Width
                && this.Height == other.Height;
        }

Same methods

Rectangle::Equals ( object obj ) : bool