14.9.5.7 operator >=

This static operator determines if the first of two OracleTimeStampLTZ values is greater than or equal to the second.

Declaration

// C#
public static bool operator >= (OracleTimeStampLTZ value1, 
    OracleTimeStampLTZ value2);

Parameters

  • value1

    An OracleTimeStampLTZ.

  • value2

    The second OracleTimeStampLTZ.

Return Value

Returns true if the first OracleTimeStampLTZ is greater than or equal to the second; otherwise, returns false.

Remarks

The following rules apply to the behavior of this method.

  • Any OracleTimeStampLTZ that has a value is greater than an OracleTimeStampLTZ that has a null value.

  • Two OracleTimeStampLTZs that contain a null value are equal.