Unable to debug managed code using visual studio 2013 ("Cannot evaluate expression" error - am using debug build) (Note that VS 2012 works)

C#.NetVisual StudioPowershell

C# Problem Overview


I have .net application (GUI as well as PowerShell) built against 4.5. My OS is server 2012. When I attach my application to 2013 visual studio, the debugger is not working sometimes. Its not evaluating expression or showing locals (and also watch window/immediate window nothing works - its as if the project is build with release). But I have build with 'Debug' configuration. And as mentioned same thing works when I simply attach with VS 2012 ( yes, I have 2k13 and 2k12 SXS)

Please note that if I attach the same process with the same settings (managed debugging), to Visual Studio 2012 it always works.

I made sure the symbols are loaded (by checking modules tab in visual studio + debug + windows), break points are hit.

Any thoughts on what might be the issue? All the updates are up-to-date as well.

Its kind of annoying to launch vs 2012 just to debug, when I am using VS 2k13 IDE for development.

Regards!

C# Solutions


Solution 1 - C#

If you are facing the same issue, please look at http://weblog.west-wind.com/posts/2013/Nov/21/Visual-Studio-2013-Could-not-evaluate-Expression-Debugger-Abnormality for details.

Here is the answer which solved for me:

I have set the flag "use managed compatibility mode" in Tools | Options | Debugger | General.

For details, take a look at the link as he explained it nicely as a story :)

Am happy it worked, otherwise I just had to load project in vs 2k12 just to debug it which is annoying.

EDIT on 12th June 2014

I have updated my dev environments with visual studio 2013 update 2 (http://www.microsoft.com/en-us/download/details.aspx?id=42666) (as per Maria's suggestion below) and removed "using managed compatibility mode". I will be testing my apps (ps cmdlets, gui, services) and update you in couple of weeks if the debugger is ok for me.

EDIT on 26th June 2014

I have tested my apps and luckily for me everything is working nicely :). Even the debugger is doing pretty good job with new async/await model. So, see if you can upgrade to 'update 2' - hopefully this works in your environment too?. Thanks to Maria and debugger's team!

Regards.

Solution 2 - C#

I deleted all my breakpoints and then it started working, with Visual Studio 2013 Update 1. This was one of the suggestions from the blog post mentioned by Dreamer.

Solution 3 - C#

We have released a fix for the issue you are describing in Update 2 CTP 2 of Visual Studio -
Please let me know if that doesn't resolve your issue!

Thanks! Maria - Visual Studio Debugger

Solution 4 - C#

Please note that while the accepted answer probably will fix the problem for now, it's best to be aware of the drawbacks of this solution. Making this change will make VS 2013 use the older style debugger for all you projects. It is a global setting. There are other ways to locally change this for a single project. Please read here for more info on this:

http://blogs.msdn.com/b/visualstudioalm/archive/2013/10/16/switching-to-managed-compatibility-mode-in-visual-studio-2013.aspx

Solution 5 - C#

We have a custom expression evaluator and our own language and this warning message to change the settings always appears even after I change the project settings to those specified in the blog.

 <DebugEngines>{351668CC-8477-4fbf-BFE3-5F1006E4DB1F}</DebugEngines>

Is there something else?

Our clients are using VS2013 pro. I've turned off all the "Enable the Visual Studio hosting process" for all our projects and also added the property to our clients projects. I still see the warning each time I attack to w3wp.exe.

IMPORTANT NOTE: If your project is using the Visual Studio hosting process (the default for many project types), you must disable the hosting process for this fix to correctly change the debug mode. To disable the hosting process go to the Debug pane on the project properties page, and uncheck "Enable the Visual Studio hosting process"

Solution 6 - C#

You can resolve this error by applying below points

Sol 1:

  1. Restart visual studio and re-open your project.
  2. Open your project bin directory and delete DLL of that code where your debugger is not working properly.
  3. Then again add DLL reference in the bin directory.
  4. Remove all breakpoints.
  5. Build project.
  6. attach with one w3wp.exe process in attach to process window
  7. Enjoy your problem has been resolved.


If above solution is not working then you can try solution that has been provided on bellow link
http://weblog.west-wind.com/posts/2013/Nov/21/Visual-Studio-2013-Could-not-evaluate-Expression-Debugger-Abnormality

Solution 7 - C#

I had a similar problem debugging where this error occurred from a return from creating a class. The class initialized fine (using "new classname()") but then it gave the "cannot evaluate expression" error on the return. Though it worked on previous visual studio versions, running on VS 2017 it crapped out.

After a lot of head banging, it turned out that private variables in the class, especially things like arraylists and other classes, needed to be declared with initial values, even if set to null.

Once that was done, everything worked, even though the solution "appeared" to have nothing to do with the problem and gave no apparent clue of where the problem occurred.

Solution 8 - C#

We had this problem with PostSharp extension version 5.0.32 with VS2013 Update 5.

Our workaround was downgrade PostSharp extension to version 4.3.19 or disable it.

Solution 9 - C#

Set AutoEventWireup="true" on aspx header file. This will turn debug mode on.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDreamerView Question on Stackoverflow
Solution 1 - C#DreamerView Answer on Stackoverflow
Solution 2 - C#What Would Be CoolView Answer on Stackoverflow
Solution 3 - C#MariaView Answer on Stackoverflow
Solution 4 - C#tmatuschekView Answer on Stackoverflow
Solution 5 - C#learnerplatesView Answer on Stackoverflow
Solution 6 - C#Vivek ParasharView Answer on Stackoverflow
Solution 7 - C#SteveFergView Answer on Stackoverflow
Solution 8 - C#Rafael MiceliView Answer on Stackoverflow
Solution 9 - C#Zuhair AliView Answer on Stackoverflow