How to save Visual Studio C ++ debugging session state?

I am using Visual Studio C ++ 2013. I am running a program with a numeric cruncher so that it continues linearly / predictably. However, I have a test that takes several hours before approving due to a logical error in my code. I can get a breakpoint before the crash, but I cannot step back without starting over.

Is there a way to get Visual Studio to keep the state of my program in order to restart it again?

The state of the program is very complex, and it will take a lot of work for me to save all the state in files for renewal later.

+4
source share
2 answers

. . , .

+4

Visual Studio ( ) Debug | Save Dump As... . , "Minidump With Heap", .

.dmp, Visual Studio , .

+3

All Articles