XML in String

  • Thread starter Thread starter Nicholas Paldino [.NET/C# MVP]
  • Start date Start date
N

Nicholas Paldino [.NET/C# MVP]

I would take a new instance of the StringWriter class, and then pass
that to the Save method on the XmlDocument class. Then, you can call the
ToString method on the StringWriter to get the string representation.

Hope this helps.
 
Back
Top