Relational Operators
Operators that compare relationships
The relational operators perform comparisons between the values of two operands. Each operator returns a boolean result that is true (-1) if the relationship holds true, or false (0) if not.
Operator = (Equal)
Compares the equal relation of two operands.
Operator <> (Not equal)
Compares the inequality relation of two operands.
Operator < (Less than)
Compares the less than relation of two operands.
Operator <= (Less than or equal)
Compares the less than or equal relation of two operands.
Operator >= (Greater than or equal)
Compares the greater than or equal relation of two operands.
Operator > (Greater than)
Compares the greater than relation of two operands.
Operator Is (Run-time type information)
Checks whether an object is of a certain type.
Back to Operators