Rewrite XMLDocument to use namespace prefix
问题 I have a XMLDocument which, when I save to file, repeats a namespace on most of the elements, as in <Test> <Test xmlns="http://example.com/schema1"> <Name xmlns="http://example.com/schema2">xyz</Name> <AddressInfo xmlns="http://example.com/schema2"> <Address>address</Address> <ZipCode>zzzz</ZipCode> </AddressInfo> ... Is it possible to amend this file so that it uses a namespace prefix throughout the document, ie something like <Test xmlns="http://example.com/schema1" xmlns:p="http://example