vs 2003 debugger issue
C#
2
Posts
2
Posters
0
Views
1
Watching
-
in the .NET IDE when you right click on a variable and choose quick watch and it says: "error: identifier <identifiers name> out of scope " what does this mean and how can i resolve this issue? thanks robust
i guess you try to watch a local variable, but in your current execution point this variable is not available (out of scope). setting a breakpoint where the variable is modified should solve your problem