Comparison


SymbolOperatorNotes
=Equal toReturns True if what is on the left is equal to what is on the right.
This is an overload of the assignment operator.
<>Not equal toReturns True if what is on the left is not equal to what is on the right.
>Greater thanReturns True if what is on the left is greater than what is on the right.
<Less thanReturns True if what is on the left is less than what is on the right.
>=Greater than or equalReturns True if what is on the left is greater than or equal to what is on the right.
<=Less than or equalReturns True if what is on the left is less than or equal to what is on the right.
IsReference equityReturns True if the object reference on the left is the same instance as the object reference on the right.
This operator can be used with Nothing.

© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext