Operators in Visual Basic:
Return to List
^' Exponentiation
+, -' Unary negation
*, \' Multiplication, division into (6\2 = .3333)
/' Division by (6/2 = 3)
Mod' Modulus (6 mod 4 = 2)
+, -' Addition, subtraction
NOT, AND, OR, XOR' BitNot, BitAnd, BitOr, BitXor
&, +' (string concatenation)
=, <>, <, >' Equal to, not equal to, etc.
<=, >=' Less than or equal to, etc.
TypeOf . . . Is, Is, Like' Relational
=, ^=, *=, /=, \=, +=, -=' Assignment
NOT, AND, OR, XOR NOT, AND, OR, XOR' Logical