
September 26th, 2006, 09:44 AM
|
|
Contributing User
|
|
Join Date: May 2006
Posts: 735
Time spent in forums: 2 Days 2 h 18 m
Reputation Power: 3
|
|
|
Backward debugging in Visual Studio??
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
|