Quote Originally Posted by Magos View Post
Why? It's much more convenient to write
Code:
int? X = null;
than
Code:
System.Nullable<int> X = null;
A lot of things would be convenient if the compiler had special cases for them... Where do you stop?

I'm no C# expert, but the little I've used it I've liked it. This bit of "syntactic sugar" just seems like Microsoft slapping itself on the back for being so clever...