Often Unused Operators: checked and unchecked
From MSDN:The checked keyword is used to explicitly enable overflow-checking for integral-type arithmetic operations and conversions.By default, an expression that contains only constant values causes a compiler error if the expression produces a value that is outside the range of the destination type. If the expression contains one or more non-constant values, the compiler does […]
. Read more