我正在使用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来删除它?