Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 :(

share|improve this question
9  
You defined your font as Nullable<Nullable<SpriteFont>> – manman Oct 23 '12 at 2:35
1  
I thought types accepting null values could not be made nullable... like classes. – Miguel Angelo Oct 23 '12 at 2:39
@manman: put that as an answer – zerkms Oct 23 '12 at 2:39
@Miguel Angelo: is there not predicate for generics constraints? If not - how would it be possible to constrain it? – zerkms Oct 23 '12 at 2:40
1  
Nullable<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

closed as too localized by Tim Post Oct 23 '12 at 2:58

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 4 down vote accepted

I have tried it here, just now... and I could not reproduce what you sayd.

All of the following statements fail to compile:

  • Nullable<int>? a = 1;
  • Nullable<Nullable<int>> b = 1;
  • Nullable<int?> a = 1;
  • void A(Nullable<Nullable<int>> a)
  • void A(Nullable<int>? a)
  • void A(Nullable<int?> a)

Using Visual Studio 2012, C# 4 or 5 I think, .Net framework 4.5.

share|improve this answer
2  
@Vulcan: No, I think it's an answer, because the question seems wrong as-is. – Mehrdad Oct 23 '12 at 2:47
2  
@Vulcan: No answer exists for a wrong questions, or false statements... just counter examples. – Miguel Angelo Oct 23 '12 at 2:53
3  
This is actually an answer. And when answers basically say "I have no idea how you got what you did", the question is usually the problem :) – Tim Post Oct 23 '12 at 2:58

The editor's syntax checker failed to flag it as an error with the red squiggles. Not the compiler.

Two distinct chunks of code. They have to be, syntax checking code while you are typing it in, in essence always broken, requires a very different approach.

share|improve this answer
This is the only explanation! It also means that the question was made without actually compiling the code. – Miguel Angelo Oct 23 '12 at 3:05

Not the answer you're looking for? Browse other questions tagged or ask your own question.