public void DragRace(DragStrip strip) { while (!strip.AtEnd) { try { Drive(); } catch (Exception) { } } }
public void DragRace(DragStrip strip) { // Continue to drive until at end. while (!strip.AtEnd) { try { Drive(); } catch (Exception) { } } }
public void DragRace(DragStrip strip) { while (!strip.AtEnd) { try { Drive(); } catch (Exception) { // Silently ignore any exceptions during racing. Just focus on winning. // The car will need a major service after the race anyways. } } }