Hello everyone,


Suppose a program looks like,

--------------------
code block 1;

if (condition == true)
{
code block 2;
}
--------------------

I want to see the state of block 1 (variable values) if condition is true. So I am wondering whether Visual Studio supports backward debugging, if it supports, I could set a breakpoint at the beginning of code block 2, and if it is executed, I could run *back* to the beginning of code block 1 to execute code block 1 again see the detailed running process of code block 1.


thanks in advance,
George