I love the null-coalescing operator because it makes it easy to assign a default value for nullable types.
int y = x ?? -1;
That\'s great,
What about
string y = (Session["key"] ?? "none").ToString();