Описание слайда:
Predefined C# Operators
The C# language provides a large set of predefined operators.
Following is the complete list.
Operator category Operators
Arithmetic +, -, *, /, %
Logical (Boolean and bitwise) &, |, ^, !, ~, &&, ||, true, false
String concatenation +
Increment and decrement ++, --
Shift <<, >>
Relational ==, !=, <, >, <=, >=
Assignment =, +=, -=, *=, /=, %=, &=, |=, <<=, >>=
Member access .
Indexing [ ]