我想从字符串中创建一个简单的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。