Stopwatch.Stop Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Stops measuring elapsed time for an interval.
Assembly: System (in System.dll)
In a typical Stopwatch scenario, you call the Start() method, eventually call the Stop method, and then you check elapsed time using the Elapsed property.
The Stop method ends the current time interval measurement. Stopping a Stopwatch that is not running does not change the timer state or reset the elapsed time properties.
When a Stopwatch instance measures more than one interval, the Stop method is equivalent to pausing the elapsed time measurement. A subsequent call to Start resumes measuring time from the current elapsed time value. Use the Reset() method to clear the cumulative elapsed time in a Stopwatch instance.