如何使用xmldocument从root元素中删除xmlns属性?

时间:2016-03-20 14:36:36

标签: c# xml

我正在使用XmlDocument从以下xml中删除xmlns属性:

<Root xmlns="http://my.namespace">
    <Product>
        <Rest of the document />
    </Product>
</Root>

我想要输出如下:

<Root>
    <Product>
        <Rest of the document/>
    </Product>
</Root>

我可以使用xdocument删除它。但有没有办法通过使用XmlDocument来删除它?

0 个答案:

没有答案