Reputation: 919
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
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:
Upvotes: 1