使用C#在XML中的属性之间添加换行符

时间:2014-03-23 17:02:04

标签: c# xml linefeed

我尝试在特定 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("&#xA", ""),
    //new XAttribute("\r\n", ""),
    new XAttribute("anotherAttrib", "valueTwo")
    );

0 个答案:

没有答案