Show Stack content (not stack call) at visual studio 2013

前端 未结 2 1081
野趣味
野趣味 2021-02-15 18:51

How i can view Stack content (not stack call) at visual studio 2013?


view to where ESP is pointing and below. show content at char.

Thanks for the help.

2条回答
  •  猫巷女王i
    2021-02-15 19:02

    You can do this by going to Debug > Windows > Registers, get the location of ESP, and then enter this address in a Debug > Windows > Memory window. However, that will only give you the raw memory.

    As OwenWengerd points out in the comments, you can simply type ESP in the address field if you're debugging native code. For some reason, this doesn't work for managed code though.

提交回复
热议问题