我尝试在特定 XML属性之间设置换行符,但到目前为止没有成功。
基本上,我需要这样的东西:
<root>
<someValue myAttrib="valueOne"
anotherAttrib="valueTwo" />
</root>
我使用XDocument类进行了一些测试,但它没有用。
提前致谢。
到目前为止我测试的内容(注释行不起作用):
var document = XDocument.Parse("<root></root>");
var xml = new XElement("someValue",
new XAttribute("myAttrib", "valueOne"),
//new XAttribute("
", ""),
//new XAttribute("\r\n", ""),
new XAttribute("anotherAttrib", "valueTwo")
);