Skip to content

Instantly share code, notes, and snippets.

@nkundu
Created May 4, 2017 13:32
Show Gist options
  • Save nkundu/675dee3b18ef2fd409b57494730f609e to your computer and use it in GitHub Desktop.
Save nkundu/675dee3b18ef2fd409b57494730f609e to your computer and use it in GitHub Desktop.
XML Document to string
public static string XmlToString(XmlDocument xmlDoc)
{
using (var stringWriter = new StringWriter())
{
using (var xmlTextWriter = XmlWriter.Create(stringWriter))
{
xmlDoc.WriteTo(xmlTextWriter);
xmlTextWriter.Flush();
return stringWriter.GetStringBuilder().ToString();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment