Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Variable does not exist in the current context while debugging

I inserted two temp variables and want to see their values, but I can't. I could solve it by placing it somewhere else, but I'm interested why this behaviour exists.

   public float Value     {         get         {             float result = Memory.ReadFloat(Address);              double Radian = Math.Round(result, 2); // **BREAK POINT HERE**             double Degree = Math.Round(Math.Round((double)(result * 180 / Math.PI)), 2); // **BREAK POINT HERE**              return result; // **BREAK POINT HERE**         }     } 

I break on all three points, but I can't get Visual Studio 2012 to show me the values. Only result will show up on the locals window, there is no variable called Radian or Degree.

If I add a watch for Radian variable for example, I get this message with a red cross icon:

Radian - The name 'Radian' does not exist in the current context

like image 892
Dominik Antal Avatar asked Nov 22 '12 17:11

Dominik Antal


1 Answers

It's possible the local variables have been optimised away by the JIT compiler. Since you're using Visual Studio you might be able to switch the configuration to Debug and rebuild.

If not, you can configure the JIT compiler to disable optimisations and generate tracking information - see here on how to set the configuration. This should allow you to see local variable when you attach the debugger to the process.

like image 100
Lee Avatar answered Sep 23 '22 00:09

Lee