TtT23
TtT23

Reputation: 7030

Visual studio debugger tooltip information

In visual studio, I believe there was a way to define what information to show on the tooltip when you roll over your mouse to a particular variable (or location) inside your code during debug mode. I can't quite remember what it was, something like [DebuggerInformation] but I might be wrong.

What is the functionality called?

Upvotes: 1

Views: 763

Answers (1)

Ekk
Ekk

Reputation: 5715

You can use DebuggerDisplay to do that.

Upvotes: 2

Related Questions