M msnews.microsoft.com May 24, 2004 #1 Hello. How can I load xml inti XmlDocument from string not from file?
H Hans Kesting May 24, 2004 #2 msnews.microsoft.com said: Hello. How can I load xml inti XmlDocument from string not from file? Click to expand... XmlDocument doc = new XmlDocument(); doc.LoadXml(myXmlString); Hans Kesting
msnews.microsoft.com said: Hello. How can I load xml inti XmlDocument from string not from file? Click to expand... XmlDocument doc = new XmlDocument(); doc.LoadXml(myXmlString); Hans Kesting