New C# conditional assignment operator ?? for null cases!! (no more ? .. : in C# 2.0)
Note: this entry has moved.
And it can be nested!object obj = canBeNull ?? alternativeObj;
// equals:
object obj = canBeNull != null ? canBeNull : alternativeObj;
I love it!
[see MSDN]
[via BradWilson code]