Is there a way to get the base name of the target variable in the Visual Studio debugger visualizer? The built-in row visualizer does this:
string myStr = "abc\ndef"; Debugger.Break();
By clicking on the visualizer icon for myStr , you will see that βmyStrβ is displayed in the Expression text box. How can I get this in my own visualizers?
debugging c # visual-studio debuggervisualizer
yoyoyoyosef
source share