我有一个小问题,我认为这是一个不用脑子......但是唉...
我有一些xml,我想要做的就是使用c#将xml:space="preserve"
添加到根元素。
我试过了:
var rootElem = xDoc.Root; // XDocument
rootElem.SetAttributeValue("{xml}space", "preserve");
结果是:
<ProjectDetails xmlns="http://site/ppm" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" p3:space="preserve" xmlns:p3="xml">
我认为这相当于
<ProjectDetails xmlns="http://site/ppm" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xml:space="preserve">
但由于xml:space
是一个特殊属性,我有点怀疑。
所以:
它们是否相同?
有没有办法可以“干净”的方式将其添加到文档中?
答案 0 :(得分:8)
您只需要正确的XName
值 - 我就是这样使用:
doc.Root.SetAttributeValue(XNamespace.Xml + "space", "preserve");
根据我的经验,XName +(XNamespace, string)
运算符通常是在LINQ to XML中使用名称空间的最简单方法。