DateTime.MinValue

Syntax

MinValue: DateTime;

Description

The MinValue property returns the minimum value of the DateTime type.

Example

Sub Main;

Var

d: DateTime;

Begin

d := DateTime.MinValue;

End Sub Main;

After executing the example the "d" variable stores the minimum value of the DateTime type (01.01.0100).

See also:

DateTime