Reputation: 1668
How can I disable Visual studio debug tooltips?
Upvotes: 3
Views: 693
Reputation: 27880
You are probably using ReSharper that displays local variables, current line expressions and function returns inside the editor while debugging. You can disable it in ReSharper - Options - Tools - Debugger.
Upvotes: 4
Reputation: 649
If you have DisplayAttribute in your code, go in:
According to Microsoft documentation:
If the show raw structure of objects in variables windows check box is selected [..] then the DebuggerDisplay attribute will be ignored.
Upvotes: 0