Stop visual studio debug putting slash in string containing double quotes

前端 未结 1 438
盖世英雄少女心
盖世英雄少女心 2020-11-27 23:47

I hit this odd behavour yesterday in Visual Studio 2015 where I was making a string that started and ended with double quotes. In stepping through the code I hovered over t

相关标签:
1条回答
  • 2020-11-28 00:03

    This is expected. Because you are under debug mode you are given the dev version of the string.

    To get a user friendly version of the string (actual value without slash) you just have to click on the magnify glass icon on the left

    0 讨论(0)
提交回复
热议问题