PixelFarm.Drawing.RectangleF.Equals C# (CSharp) Method

Equals() public method

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