public string GetVehicleBasicPropsForDisplay() { string theBasicPropsDisplay = string.Format (@"Model : {0} ", Model); theBasicPropsDisplay = theBasicPropsDisplay + Wheels[0].GetPropsForDisplay() + Engine.GetEngineBasicPropsForDisplay(); return(theBasicPropsDisplay); }