Visual Studio 2015 Update 3 crashes after "Retrieving Text DataTip ..."

When debugging a C # application in Visual Studio 2015, I very often get this message when I hover over a variable:

enter image description here

After that, it freezes and restarts, which makes debugging impossible.

Does anyone have a key?

+5
source share
3 answers

It seems like checking this parameter:
Tools β†’ Options β†’ Debugging β†’ General: β€œUse compatible compatibility mode” .
avoids the error in Visual Studio 2015, but disables Modify and continue ... which is not good.

So I'm still looking for a better answer.

Sources:

Quoting the latter:

In Visual Studio 2012, we introduced a new managed debugging engine that gives us the ability to add new features faster than the old version. This can be seen by the number of features introduced in Visual Studio 2013 in just one year, including Managed Return Values, .NET 64-bit Edit and Continue, Async Callstacks Enhancements and Improved Tasks Window, to name a few. Unfortunately, there are still several scenarios that are not yet supported by the new debugging mechanism, so in these cases you will have to switch back to the outdated engine.

... therefore it seems that this is not new.

+2
source

Like this thread, used in conjunction with duDE, disable the "Enable property evaluation and other implicit function calls" option in Tools-> Options β†’ Debugging-> General.

+7
source

This problem should be fixed in Visual Studio "15" Preview 5 (available here . Unfortunately, there are no known workarounds other than those already mentioned for updating Visual Studio 2015 3.

0
source

All Articles