I want parse xml by looping through it. I referred this but I am not able to parse it using the Load function since it expects an URI parameter and not a string and so does LINQ to XML….Can anyone help me out ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
XmlDocumenthas aLoadmethod which takes a filename, but also aLoadXmlmethod which takes a string:http://msdn.microsoft.com/en-us/library/system.xml.xmldocument.loadxml.aspx
Similarly,
XDocumenthas aLoadmethod which takes a filename, or aParsemethod which takes a string:http://msdn.microsoft.com/en-us/library/bb345532.aspx