Show stack contents (not stack call) at visual studio 2013

How can I view the contents of a stack (not a stack call) on visual studio 2013?


see where ESP and below are indicated. show contents on char.

Thanks for the help.

+4
source share
1 answer

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

As OwenWengerd notes in the comments, you can simply enter ESP in the address field if you are debugging your own code. For some reason this does not work for managed code.

+6
source

Source: https://habr.com/ru/post/1537938/


All Articles