IBinaryReader.ReadDateTime

Syntax

ReadDateTime: DateTime;

Description

The ReadDateTime method reads date and time from a binary file.

Example

Executing the example requires the 1.dat binary file to be present in the root of the disc C.

Sub UserProc;
Var
    File1: IFileInfo;
    BinR: IBinaryReader;
    d: DateTime;
Begin
    File1:=New FileInfo.Attach("c:\1.dat");
    If File1.Exists Then
    BinR:=File1.OpenBinaryReader;
    d:=BinR.ReadDateTime;
    End If;
    Dispose File1;
End Sub UserProc;

After executing the example, the "d" variable contains date and time read from the 1.dat binary file.

See also:

IBinaryReader