Is it possible to change the value of a variable while debugging a c# application?
Answers
Answered by
5
yes ,it is possible to change the value of a variable while debugging in a c# application .
Answered by
0
'Yes' it possible to change the "value of a variable" while debugging a "c# application".
Explanation:
Yes, Visual Studio allows the developer to modify the value of a variable during debugging in a c# application.
Set a breakpoint, hover the mouse above the variable so that a tooltip appears with the name of the variable and the variable's current value. Then swing the mouse over to the value in the tooltip and click on it to change the value.
Otherwise, use the Immediate Window to enter an expression to modify the variable's value.
Similar questions