SyntaxFix
Write A Post
Hire A Developer
Questions
For a very specific reason Type Nullable<int> put your cursor on Nullable and hit F12 - The Metadata provides the reason (Note the struct constraint):
Nullable<int>
public struct Nullable<T> where T : struct { ... }
http://msdn.microsoft.com/en-us/library/d5x73970.aspx