How to transform this
<d xmlns='uri' xmlns:a='uri'>
<a:c/>
<c a:atr=':a:b:c:d:e:f:'/>
</d>
into this
<d xmlns='uri' xmlns:b='uri'>
<b:c/>
<c b:atr=':a:b:c:d:e:f:'/>
</d>
?
Is it even possible? Preferably with System.Xml.XmlDocument
.
If it's not possible with .Net, do you know what is it possible with?