Determines whether one specified DateTimeOffset object is greater than or equal to a second specified DateTimeOffset object.
true if the DateTimeOffset.UtcDateTime value of left is the same as or later than the DateTimeOffset.UtcDateTime value of right; otherwise, false.
The DateTimeOffset.op_GreaterThan(DateTimeOffset, DateTimeOffset) method defines the operation of the greater than or equal to operator for DateTimeOffset objects. It enables code such as the following:
code reference: System.DateTimeOffset.Operators#5
Languages that do not support custom operators can call the DateTimeOffset.Compare(DateTimeOffset, DateTimeOffset) method instead. Some languages can also call the DateTimeOffset.op_GreaterThanOrEqual(DateTimeOffset, DateTimeOffset) method directly, as the following example shows.
code reference: System.DateTimeOffset.Operators#6
Before evaluating the left and right operands, the operator converts both values to Coordinated Universal Time (UTC). The operation is equivalent to the following:
code reference: System.DateTimeOffset.Syntax#6