XmlDocument doc = new XmlDocument();
doc.LoadXml(str);
Where str is your XML string. See the MSDN article for more info.
XmlDocument doc = new XmlDocument();
doc.LoadXml(str);
Where str is your XML string. See the MSDN article for more info.