14 Apr
C# Shorthand
C# conveniences to make coding easier:
- The ? conditional evaluation operator
- Null-Coalesce operator (??)
- Object Initializers
- The using statement
- Aliases for long winded namespaces and types
- Nullable objects
- Automatic Properties
- Type inference
- Lambda Expressions
- string.IsNullOrEmpty
And bonus points coming in C# 4.0:
- Optional and named parameters in C# 4.0

