[This is preliminary documentation and is subject to change.]
Compares two ZonedDateTime values to see if the left one is later than or equal to the right
one.

C# | Visual Basic | Visual C++ |
public static bool operator >=( ZonedDateTime lhs, ZonedDateTime rhs )
Public Shared Operator >= ( _ lhs As ZonedDateTime, _ rhs As ZonedDateTime _ ) As Boolean
public: static bool operator >=( ZonedDateTime lhs, ZonedDateTime rhs )

- lhs (ZonedDateTime)
- First operand of the comparison
- rhs (ZonedDateTime)
- Second operand of the comparison

true if the lhs is later than or equal to rhs, false otherwise.

This operator always returns false if the two operands have different calendars or time zones.
See the top-level type documentation for more information about comparisons.
Assembly: NodaTime (Module: NodaTime.dll) Version: 1.2.0.0 (1.2.0)