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>[email protected]</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# ?