Ejemplo n.º 1
0
 public static bool operator ==(Rect Rectangle1, Rect Rectangle2)
 {
     return(Rectangle1.Equals(Rectangle2));
 }
Ejemplo n.º 2
0
 public static bool operator !=(RECT Rectangle1, RECT Rectangle2)
 {
     return(!Rectangle1.Equals(Rectangle2));
 }
Ejemplo n.º 3
0
 public static bool operator !=(UserRect Rectangle1, UserRect Rectangle2)
 {
     return(!Rectangle1.Equals(Rectangle2));
 }