Retrieves the millisecond part represented by this instance.
[Visual Basic] Public ReadOnly Property Millisecond As Integer [C#] public int Millisecond {get;} [C++] public: __property int get_Millisecond(); [JScript] public function get Millisecond() : int;
Read-only.
The Millisecond property returns a value that is an 32-bit signed integer (int) between 0 and 999 that is the number of milliseconds of this instance of DateTime.
It is calculated by dividing the ticks by the ticks per minute and the quotient divided by seven ((ticks/ TicksPerMinute)/ 60) and returns an 32-bit signed integer value.
DateTime Structure | DateTime Members | System Namespace | TicksPerMinute | Ticks | Int32