Operator | Description |
---|---|
. [] () | Field access, array indexing, function calls, and expression grouping |
+ - not @ | Unary operators, object creation, delegate creation |
* / div mod shl shr and | Multiplication, division, integer division, modulo division, bitwise shifts, logical and, bitwise and |
+ - or xor | Addition, subtraction, logical or, bitwise or, logical xor, bitwise xor |
< <= > >= = <> | Less than, less than or equal, greater than, greater than or equal, equality, inequality |