How to get a good overview of the data structure in the debugger?

I am debugging a Visual C ++ project that uses Rogue Wave. I would like to see the contents of RW containers easily, that is, I want to see list items instead:

What are my options? Can autoexp.dat do this?

+3
source share
1 answer

autoexp.dat can do this, but it's rather complicated.

You can also write your own debugger extensions to visualize them, put them in a DLL, and access it in autoexp.dat. But then again, it is rather complicated.

autoexp.dat, STL (, , , ,...), RWTIsvSlist.

+2

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


All Articles