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

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator !=(Rectangle a, Rectangle b)
        {
            return a.X != b.X
                || a.Y != b.Y
                || a.Width != b.Width
                || a.Height != b.Height;
        }

Same methods

Rectangle::operator ( ) : Rectangle