Convert String to XML - .NET/C#

If you have a valid string in "str", you can use XmlDocument to load the string and then save string to an XML file using Save method of XmlDocument. Don't forget to import System.Xml namespace before using XmlDocument.

XmlDocument doc = new XmlDocument();
doc.LoadXml(str);
doc.Save("SSML.xml");