XmlDocument.Save doesn't output full QNames for Elements
I've encountered an issue whereby when I create an XML Document programmatically using the System.Xml classes and then use the Save method the output XML doesn't use QNames for the Nodes and just uses local names. eg Desired Output <ex:root> <ex:something attr:name="value"> </ex:root> But what I currently get is <root> <somethin...