datetime class : Millisecond getter
Description
Gets the millisecond portion of the time represented by this instance.
Syntax
datetimeInstance.Millisecond
Arguments
None
Return value
| Class | Description |
| int | Millisecond portion of datetime. |
Sample code
| 1: | datetime dt = new datetime(); |
| 2: | int millisecond = dt.Millisecond; |
Notes
It's a wrapper of the System.DateTime.Millisecond property.
This getter was added in the Ver 1.0.0.1.


