public override string displayInfo()//overrides the display method { Trip trip = new Trip(this.VType, this.AvgSpeed, this.Distance); return(base.displayInfo() + "\n" + "Engine is: " + this.EngType + "\n" + "Travel time is: " + trip.getTime() + " hours"); }