Resets the elapsed count to zero.
This method does not stop or start the Stopwatch.
void reset() { if (_start == null) return; _start = _now(); if (_stop != null) { _stop = _start; } }