OpenTK.Graphics.Rectangle.Equals C# (CSharp) Method

Equals() public method

Equals Method
Checks equivalence of this Rectangle and another object.
public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            if (!(obj is Rectangle))
                return false;
            return (this == (Rectangle)obj);
        }