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.

Possible Duplicate:
Where in memory are stored nullable types?

A very basic question on Nullable types - where do the nullable values get stored - Heap or Stack?

I would believe it should be stored in Stack as Nullable stack is a struct. How does Null value get stored in a stack?

share|improve this question
The important thing here is that you have an incorrect belief that value types go on the stack. Can you describe how you came by this incorrect belief? – Eric Lippert Sep 28 '10 at 14:22

marked as duplicate by Julien Hoarau, RPM1984, Preet Sangha, Cameron MacFarland, Darin Dimitrov Sep 28 '10 at 9:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

Here is a link which might help you understand the Nullable types -

http://msdn.microsoft.com/en-us/library/b3h38hb0.aspx

share|improve this answer

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