Syntax
- stopWatch.Start() - Starts Stopwatch.
- stopWatch.Stop() - Stops Stopwatch.
- stopWatch.Elapsed - Gets the total elapsed time measured by the current interval.
Stopwatches are often used in benchmarking programs to time code and see how optimal different segments of code take to run.