예제 #1
0
 public override string ToString()
 {
     return(Vehiculo.Mostrar(this) + "\n-TIPO: " + this.tipo + "\n");
     //return Vehiculo.Mostrar(this) + "\n-TIPO: " + this.tipo+"\n";
 }
예제 #2
0
파일: Moto.cs 프로젝트: nahuelcisa/proglab2
 public override string ToString()
 {
     return(Vehiculo.Mostrar(this) + "\n-CILINDRADA: " + this.cilindrada + "\n");
 }