public static Peso operator -(Peso p, Euro e) { Peso x = new Peso(); x = (Peso)e; p._cantidad -= x.GetCantidad(); return(p); }
public static Peso operator -(Peso p, Dolar d) { Peso x = new Peso(); x = (Peso)d; p._cantidad -= x.GetCantidad(); return(p); }
public static bool operator ==(Dolar d, Peso p) { if (d._cantidad * Peso.GetCotizacin() == (float)p.GetCantidad()) { return(true); } else { return(false); } }
public static bool operator ==(Peso p, Dolar d) { Peso x = new Peso(); x = (Peso)d; if (x.GetCantidad() == (float)p.GetCantidad()) { return(true); } else { return(false); } }
static void Main(string[] args) { Console.Title = "EJ_20"; Dolar d1 = new Dolar(1); Peso p1 = new Peso(17.55); Euro e1 = new Euro(20); Console.WriteLine(d1 == p1); Console.WriteLine(d1 == e1); Console.WriteLine(e1 == p1); //Console.WriteLine(d1 + p1); Console.ReadKey(); }