I am curious to know if there is a way to edit code in C# VS 2008 right when it has hit a breakpoint and I am walking thru the code... can I modify the code (such as the value i
To modify the value of a variable or set a property while in break mode go to the Immediate window, set the new value, and hit return e.g.
strValue = "newValue" Calendar1.Enabled = true
To retrieve a value you can just print it to the window e.e.
?strValue ?Calendar1.Enabled