C# Progammeerimise keel
new {...} Anonymous object initializer
new T[...] Array creation
typeof(T) Obtain System.Type object for T
checked(x) Evaluate expression in checked context
unchecked(x) Evaluate expression in unchecked context
default(T) Obtain default value of type T
delegate {...} Anonymous function (anonymous method)
Unary +x Identity
x Negation
!x Logical negation
~x Bitwise negation
++x Pre-increment
x Pre-decrement
(T)x Explicitly convert x to type T
Multiplicative x * y Multiplication
x / y Division