Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The debugger does not want to step into an unused variable. If I declare (var x = "hola") it doesn't recognize x and says that it doesn't exist in the current context. When I do some work with x then it recognizes it.

share|improve this question
Is that in Release or Debug mode? – DrJokepu Mar 20 '09 at 15:29

1 Answer

up vote 4 down vote accepted

That line of code is probably optimized away by the compiler... You might be able to step into it if you turn off optimizations.

share|improve this answer
Yeah that was the solution!, but i didnt remember have turned on that option, is not by default always selected optimize code? well is working now thanks. – dennis Mar 20 '09 at 16:17
It's on by default in Release builds, off in Debug builds. Not sure if VS Express supports this distinction. – romkyns Nov 18 '09 at 17:54
and.... what option is that, where do you set it? – Daniel Williams Dec 24 '11 at 4:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.