Esempio n. 1
0
 //excepcion al Metodo to string para mostrar los destinos en consola
 public override string ToString()
 {
     return
         ("----------------------------------" + "\n" +
          " - Pais: " + this.Pais.Substring(0, 1).ToUpper() + Pais.Substring(1).ToLower() + "\n" +
          " - Ciudad: " + this.Ciudad.Substring(0, 1).ToUpper() + Ciudad.Substring(1).ToLower() + "\n" +
          " - Cantidad de dias: " + this.cantDias + "\n" +
          " - Costo por dia: $ " + this.costoXDia + "\n");
 }