Comparison
Symbol | Operator | Notes |
= | Equal to | Returns 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 to | Returns True if what is on the left is not equal to what is on the right. |
> | Greater than | Returns True if what is on the left is greater than what is on the right. |
< | Less than | Returns True if what is on the left is less than what is on the right. |
>= | Greater than or equal | Returns True if what is on the left is greater than or equal to what is on the right. |
<= | Less than or equal | Returns True if what is on the left is less than or equal to what is on the right. |
Is | Reference equity | Returns 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