\ r \ n在以XML格式存储值时返回

时间:2016-01-21 23:12:02

标签: c# asp.net xml

我想从字符串中创建一个简单的XML。它工作得很好,但是\ r \ n之间会加入。

我应该做些什么改变?

   String doubleQuote = @"";
     String backSlash = @"\";

    XElement xmlInReturn = new XElement("toast",
        new XAttribute("activationType", backSlash + doubleQuote + "abc" + backSlash + doubleQuote),                
        new XElement("def",
         new XElement("ghi",
            new XAttribute("jkl", "mno"),
            new XElement("pqr", headerText),
            new XElement("stu", BodyContents)
              )));

这里,当我检索xmlInReturn时,会添加\ r \ n。

0 个答案:

没有答案