XmlDocument - load from string? XmlDocument - load from string? asp.net asp.net

XmlDocument - load from string?


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

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