简体   繁体   中英

visual studio debugger graphical visualizer c++

are there any good tutorials or training for writing custom visualizers with c# for debugging c++ code?

I found an example but the code does not work with visual studio 2015. Took some time trying to debug but I can't see the content of the variables representing the debugger information.

I do not mean debugger information formatting like natvis, I need a graphical output of the variable data like ArrayPlotter , but for my data structures and I don't like to write my array of structs to float arrays.

Have you seen Graphical Debugging extension?

The code is open and available at GitHub so you can fork it and add support for any C++ types you like. If you only need to represent your structs as 2d points you do not even need to fork anything, just define point classes in XML file. If you have any questions just create an issue at GitHub.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM