Convert XmlDocument to String

Here is how I’m currently converting XMLDocument to String StringWriter stringWriter = new StringWriter(); XmlTextWriter xmlTextWriter = new XmlTextWriter(stringWriter); xmlDoc.WriteTo(xmlTextWriter); return stringWriter.ToString(); The problem with this method is that if I have “ ((quotes) which I have in attributes) it escapes them. For Instance: <Campaign name=”ABC”> </Campaign> Above is the expected XML. But it returns … Read more