Can the Visual Studio Debugger display strings unquoted/unescaped?

前端 未结 2 876
渐次进展
渐次进展 2020-12-03 14:36

The managed debugger in Visual Studio (I am using 11.0) displays string values containing double quotes and backslashes like this:

\"{\\\"Text\\\":\\\"C:\\\\         


        
2条回答
  •  心在旅途
    2020-12-03 15:06

    I see two options that may be less cumbersome then clicking the magnifying glass each time, depending on the situation:

    1. Right click the value and hit 'Add To Watch', then edit the expression that was added to watch and add ,nq (the 'no quotes' format specifier) at the end. For example, "myJsonObject.JsonText,nq". From then on, look at the Watch window (rather than the data-tip) to see the values as you step through your code.

    2. Using OzCode, right click the expression and select Add Custom Expressions, and add a custom expression with ,nq at the end. For example: [obj].JsonText,nq.

    Full disclosure: OzCode is a commercial VS extension that I am co-author of, currently free while in beta.

提交回复
热议问题