Esempio n. 1
0
 public static bool operator ==(Pesos p, Dolar d)
 {
     if (p.GetCantidad() == (d.GetCantidad() * Dolar.GetCotizacion()))
     {
         return(true);
     }
     return(false);
 }
Esempio n. 2
0
 public static Euro operator -(Euro e, Dolar d)
 {
     return(new Euro(e.cantidad - (d.GetCantidad() * Dolar.GetCotizacion())));
 }
Esempio n. 3
0
 public static Pesos operator -(Pesos p, Dolar d)
 {
     return(new Pesos(p.cantidad - (d.GetCantidad() * Dolar.GetCotizacion())));
 }