XmlDocument - load from string? XmlDocument - load from string? xml xml

XmlDocument - load from string?


XmlDocument doc = new XmlDocument();doc.LoadXml(str);

Where str is your XML string. See the MSDN article for more info.