Click or drag to resize

ZonedDateTimeGreaterThan Operator

Determines whether one specified ZonedDateTime is later than another specified ZonedDateTime.

Namespace:  Neo4j.Driver
Assembly:  Neo4j.Driver (in Neo4j.Driver.dll) Version: 5.0
Syntax
public static bool operator >(
	ZonedDateTime left,
	ZonedDateTime right
)

Parameters

left
Type: Neo4j.DriverZonedDateTime
The first object to compare.
right
Type: Neo4j.DriverZonedDateTime
The second object to compare.

Return Value

Type: Boolean
true
if one is later than another, otherwise
false
.
See Also