I made a typo and Visual Studio didn't mark it as an error:
void Method(Nullable<SpriteFont>? font = null) { }
font shows up as SpriteFont?? in output. What did I just do?
UPD: Sorry, everyone, I didn't try co compile it, it just didn't show up as an error until I did. Still, it's weird that it looked as Type?? in output.
Furthermore SpriteFont is already nullable, so I was going to get an error anyway :(
notpredicate for generics constraints? If not - how would it be possible to constrain it? – zerkms Oct 23 '12 at 2:40Nullable<T>struct is a special type... it is handled in different ways both by C# compiler, and by the CLR. – Miguel Angelo Oct 23 '12 at 2:42