What is operator precedence in VB.NET?
Operators | Description |
^ | Exponentiation |
+,- | Unary identity and negation |
*, / | Multiplication and floating-point division |
Integer division | |
Mod | Modulus arithmetic |
+,-, + | Addition, Subtraction, String concatenation |
& | String concatenation |
<<,>> | Arithmetic bit shift |
=, <>, <, <=, >, >=, Is, IsNot, Like, TypeOf...Is | All Comparison, Logical, Bitwise Operators. |
Not | Negation |
And,AndAlso | Conjuction |
Or,OrElse | Inclusive disjunction |
Xor | Exclusive disjunction |