adspace
How to load the contents of an xml file into an xmldocument object?
Answer Posted / Shivaji Pratap Singh
You can use XDocument or XmlDocument to load XML files. Here is an example using XmlDocument:nnXmlDocument doc = new XmlDocument();ndoc.Load("filename.xml");
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers