ElapsedMilliseconds Property
Collapse the table of content
Expand the table of content

Stopwatch.ElapsedMilliseconds Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets the total elapsed time measured by the current instance, in milliseconds.

Namespace:  System.Diagnostics
Assembly:  System (in System.dll)

'Declaration
Public ReadOnly Property ElapsedMilliseconds As Long

Property Value

Type: System.Int64
Returns Int64.

This property represents the elapsed time rounded down to the nearest whole millisecond value. For higher-precision measurements, use the Elapsed or ElapsedTicks property.

You can query the properties Elapsed, ElapsedMilliseconds, and ElapsedTicks while the Stopwatch instance is running or stopped. The elapsed time properties steadily increase while the Stopwatch is running; they remain constant when the instance is stopped.

By default, the elapsed time value of a Stopwatch instance equals the total of all measured time intervals. Each call to Start begins counting at the cumulative elapsed time; each call to Stopwatch ends the current interval measurement and freezes the cumulative elapsed time value. Use the Reset method to clear the cumulative elapsed time in an existing Stopwatch instance.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft