dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlNumeric Structure / Greater Than or Equal Operator
First PgSqlNumeric.
Second PgSqlNumeric.

In This Topic
    Greater Than or Equal Operator (PgSqlNumeric)
    In This Topic
    Compares two PgSqlNumeric structures to determine whether the left one is less than or equal to the right.
    Syntax
    'Declaration
     
    Public Operator >=( _
       ByVal left As PgSqlNumeric, _
       ByVal right As PgSqlNumeric _
    ) As Boolean
    public bool operator >=( 
       PgSqlNumeric left,
       PgSqlNumeric right
    )

    Parameters

    left
    First PgSqlNumeric.
    right
    Second PgSqlNumeric.

    Return Value

    True if the first of two PgSqlNumeric values is greater than or equal to the second; otherwise, false.
    See Also