Read XML from a String in C#.NET

Read XML from a String in C#.NET

//Assembly: System.Xml.dll
using System.IO;
using System.Xml;

public static void  ReadXML(xmlString)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml(xmlstring);
}
   
Share |

 Cant find the page you are looking for?
 Help us to improve by adding the content that you are looking for.
 Leave a feedback
 We look forward to hear your comments and feedback.