I am creating a lightweight editor in C# and would like to know the best method for converting a string into a nicely formatted XML string. I would hope that there\'s a pub
Is the string valid XML? Do you mean how can you convert an XML string into an XML document? If so, do this:
XmlDocument xml = new XmlDocument(); xml.LoadXml( YourString );