vote up 0 vote down star

Duplicate: This is a duplicate of Best practices to parse xml files with C#? and many others (see http://stackoverflow.com/search?q=c%23+parse+xml). Please close it and do not answer.


How do you parse XML document from bottom up in C#?

For Example :

<Employee>
   <Name> Test </name>
   <ID> 123 </ID>
<Employee>
<Company>
    <Name>ABC</company>
    <Email>test@ABC.com</Email>
 </company>

Like these there are many nodes..I need to start parsing from bottom up like..first parse <company> and then and so on..How doi go about this in C# ?

flag

25% accept rate

5 Answers

vote up 2 vote down

I like Linq's XDocument.

link|flag
vote up 0 vote down

Try this:

XmlDocument doc = new XmlDocument();
doc.Load(@"C:\Path\To\Xml\File.xml");

Or alternatively if you have the XML in a string use the LoadXml method.

Once you have it loaded, you can use SelectNodes and SelectSingleNode to query specific values, for example:

XmlNode node = doc.SelectSingleNode("//Company/Email/text()");
// node.Value contains "test@ABC.com"

Finally, note that your XML is invalid as it doesn't contain a single root node. It must be something like this:

<Data>
    <Employee>
        <Name>Test</name>
        <ID>123</ID>
    </Employee>
    <Company>
        <Name>ABC</company>
        <Email>test@ABC.com</Email>
    </Company>
</Data>
link|flag
@Jon: you do know this is about to be closed as a duplicate, right? – John Saunders Aug 6 at 12:36
vote up 0 vote down

You can use the XmlSerializer class. It takes your class and can read/write it to XML files really easily.

link|flag
vote up 0 vote down

Use XML serialization

link|flag
vote up 2 vote down

hi

checkout the System.Xml Namespace

http://msdn.microsoft.com/en-us/library/system.xml%28VS.80%29.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.