Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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, only a "??" mark for each byt. Why can't I see the content?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...