public string GivVersion(Bil koeretoej) { if (koeretoej is Skoda) { return(((Skoda)koeretoej).SkodaType.ToString()); } else if (koeretoej is Folkevogn) { return(((Folkevogn)koeretoej).vwType.ToString()); } else { return("ukendt"); } }
public string GivFarve(Bil koeretoej) { return(koeretoej.Farve); }