blob: ece59bc1dbeaace5b614f91ff1afeb65f4add98e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Program Example46;
{ This program demonstrates the MilliSecondOfTheSecond function }
Uses SysUtils,DateUtils;
Var
N : TDateTime;
Begin
N:=Now;
Writeln('MilliSecond of the Second : ',
MilliSecondOfTheSecond(N));
End.
|