In C#, is there a way to check whther the memory address allocated by CLR for a variable falls into the range of heap or stack?
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.
| show 5 more comments |
|
It is possible to do with SOS debugging extension. These two commands will display you all the content of the stack and heap:
Although I am not really sure how to quickly find a particular variable in question. Those commands will output quite a lot variables to naviage through. |
|||
|
ref/outparameter? Or astructfield? Or? In most other cases you can reason where it lives... – Marc Gravell♦ Mar 10 '12 at 12:39