Home > Enterprise >  How to suppress value addresses from debugger
How to suppress value addresses from debugger

Time:01-05

I can't find solution in Google. I looked at every setting in VS. I couldn't find it. Sorry for possible duplication. But how do I suppress all those addresses in the debugger output? I just want to see the value_=3 and "sand.texture".

enter image description here

enter image description here

CodePudding user response:

Oh. Thanks to @Captain Obvlious I found right answer using format specifiers. Didn't know that Visual Studio have that thing. But here is an answer

  1. Add variable to Watch
  2. Changed that that variable to this [variableName],na

Here is an example: enter image description here enter image description here

  • Related