I posed a question last night regarding how to parse through repeating XML structures. The XML has two levels that repeat and the second level contains elements that I need to store elsewhere.
The question was marked as a duplicate and pointed to an accepted answer that stated 'use Linq to XML' basically.
While I appreciate the answer, the bottom of my question stated I've tried to understand how to use LINQ to XML, but couldn't figure out how to access the second level data.
Are there any easy to understand examples or tutorials on how to use LINQ to XML, or any other method for that matter, to take the information in an XML document and be able to loop through it?
I've done this in Perl previously and it basically sucks in the XML and creates a large object you can iterate through.
Link to original question: Parsing XML with C Sharp