Why I can only see “??” at any address before 0x70000 in Visual Studio Debug Memeory window?

后端 未结 1 1596
孤独总比滥情好
孤独总比滥情好 2020-12-19 18:35

I am debuging with Visual Studio 2010. I want to see the raw memory bytes in the Debug Memory window. But I noticed that before 0x70000, the memory content is not shown, onl

相关标签:
1条回答
  • 2020-12-19 19:24

    Visual Studio shows ?? for memory locations that are not mapped into your current address space. Since you can inspect any memory location within your process' 4 GB virtual address space, it only shows hex bytes for mapped memory.

    0 讨论(0)
提交回复
热议问题