Share via


Milliseconds Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets the milliseconds component of the time interval represented by the current TimeSpan structure.

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

Syntax

'Declaration
Public ReadOnly Property Milliseconds As Integer
public int Milliseconds { get; }
public:
property int Milliseconds {
    int get ();
}
member Milliseconds : int with get
function get Milliseconds () : int

Property Value

Type: System. . :: . .Int32
The millisecond component of the current TimeSpan structure. The return value ranges from -999 through 999.

Remarks

A TimeSpan value can be represented as [-]d.hh:mm:ss.ff, where the optional minus sign indicates a negative time interval, the d component is days, hh is hours as measured on a 24-hour clock, mm is minutes, ss is seconds, and ff is fractions of a second. The value of the Milliseconds property is the fractional second component, ff.

.NET Framework Security

See Also

Reference

TimeSpan Structure

System Namespace