예제 #1
0
파일: Pesos.cs 프로젝트: xTomluca/ProLab2
 public static bool operator ==(Pesos p, Dolar d)
 {
     if (p.GetCantidad() == (d.GetCantidad() * Dolar.GetCotizacion()))
     {
         return(true);
     }
     return(false);
 }
예제 #2
0
 public static Euro operator -(Euro e, Dolar d)
 {
     return(new Euro(e.cantidad - (d.GetCantidad() * Dolar.GetCotizacion())));
 }
예제 #3
0
 public static Pesos operator -(Pesos p, Dolar d)
 {
     return(new Pesos(p.cantidad - (d.GetCantidad() * Dolar.GetCotizacion())));
 }