Comparison= < > <= >= <>Arithmetic+ - * /Mod\ (integer division)^ (raise to a power)Assignment= += -= *= /= \= ^= <<= >>= &=BitwiseAnd Or Xor Not << >>LogicalAndAlso OrElse And Or Xor NotNote: AndAlso and OrElse perform short-circuit logical evaluationsString Concatenation&
Comparison== < > <= >= !=Arithmetic+ - * /% (mod)/ (integer division if both operands are ints)Math.Pow(x, y)Assignment= += -= *= /= %= &= |= ^= <<= >>= ++ --Bitwise& | ^ ~ << >>Logical&& || & | ^ !Note: && and || perform short-circuit logical evaluationsString Concatenation+