public static bool operator ==(Rect Rectangle1, Rect Rectangle2) { return(Rectangle1.Equals(Rectangle2)); }
public static bool operator !=(RECT Rectangle1, RECT Rectangle2) { return(!Rectangle1.Equals(Rectangle2)); }
public static bool operator !=(UserRect Rectangle1, UserRect Rectangle2) { return(!Rectangle1.Equals(Rectangle2)); }