Corovei Andrei
Corovei Andrei

Reputation: 1668

Visual studio debug tooltips

How can I disable Visual studio debug tooltips?

enter image description here

Upvotes: 3

Views: 693

Answers (2)

Sergey Vlasov
Sergey Vlasov

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

Alex
Alex

Reputation: 649

If you have DisplayAttribute in your code, go in:

  • Tools -> Options -> Debugging
  • check "Show raw structure of objects in variables window"

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

Related Questions