livan3li
livan3li

Reputation: 919

How to view a field variable content in visual studio editor in design time when i do mouseover

Question is simple. I just want to know what's in the variable value(those are actually constants or have default value) in design time -NOT RUNTIME or WHILE DEBUGGING- in the Visual Studio editor instead of scrolling to variable itself to see field's content?

Is there any feature, extension or something like that.

Upvotes: -1

Views: 70

Answers (1)

Wenbin Geng
Wenbin Geng

Reputation: 3696

If you define a value and don't need to change it, you can directly define it as a constant. This way you can see the value directly when you hover over it:

enter image description here

Upvotes: 1

Related Questions