visual-studio-2010 – Visual Studio 2010如何在调试时用新的XML替换大型字符串变量

我正在使用Visual Studio 2010并设置断点,以便在使用大型
XML字符串的内容设置变量后停止执行应用程序.我想用不同的XML字符串替换字符串的内容.我打开Text Visualizer但它不允许我修改字符串.如何更改变量的内容?我在监视窗口中显示变量,但只复制了字符串的第一行. 最佳答案 我的解决方法:

>将Text Visualizer中的文本复制到记事本:

<table xmlns="http://www.w3schools.com/furniture">
  <name>African Coffee Table</name>
  <width>80</width>
  <length>120</length>
</table>

>根据您的需要编辑值:

<table xmlns="http://www.w3schools.com/furniture">
  <name>African Coffee Table</name>
  <width>100</width>
  <length>200</length>
  <weight m="kilo">12</weight>
</table>

>全部替换“with”“:

<table xmlns=""http://www.w3schools.com/furniture"">
  <name>African Coffee Table</name>
  <width>100</width>
  <length>200</length>
  <weight m=""kilo"">12</weight>
</table>

>打开立即窗口
>使用verbatim string literal @“”将新值分配给变量,例如

myXml=@"<table xmlns=""http://www.w3schools.com/furniture"">    <name>African Coffee Table</name>    <width>100</width>    <length>200</length>    <weight m=""kilo"">12</weight>  </table>"
点赞