The managed debugger in Visual Studio (I am using 11.0) displays string values containing double quotes and backslashes like this:
"{\"Text\":\"C:\\\\Temp\"}"
Occasionally I would like to display an escaped text like the above one in its plain form:
{"Text":"C:\\Temp"}
I am aware of the text visualizer which is accessible via the magnifying glass next to the value, but this is rather cumbersome during debugging some text manipulation routine.
Is there a way to change the display of string values in the debugger?