<?xml version=\"1.0\" encoding=\"utf-8\"?>
<bookstore>
   <book ISBN=\"1159-1\">
   <title>C#profession</title>
   <author>luozhiqiang</author>
   <price>128.00</price>
   </book>
</bookstore>一个xml文件outerxml文件之后,变成了以上这种样子,
怎么样可以不带"\",象下面这个样子
<?xml version="1.0" encoding="utf-8"?>
<bookstore>
   <book ISBN="1159-1">
   <title>C#profession</title>
   <author>luozhiqiang</author>
   <price>128.00</price>
   </book>
</bookstore>主要是要传给一个第三方应用,以string方式。