I have a problem with debugging... All of a sudden I can\'t see the values of most variables while debugging. I\'ve managed to get two different messages in the Immediate Window
The best way I've found to convince the JIT compiler not to optimize the code is to use an INI file with the name of the assembly in the same folder the assembly is in with the contents:
[.NET Framework Debugging Control]
GenerateTrackingInfo=1
AllowOptimize=0
Note that it has to be the name of the assembly, not the name of the process EXE (unless it is the EXE assembly you want to debug). E.g. if you have an assembly MyCode.dll
the INI file name would be MyCode.ini
.
Here are some slides from a presentation on .Net debugging which show the difference:
With Optimization:
Without Optimization: