I learning Xml data handling in .NET. I have the following XML format.
book 1
<
If the file is reasonable small - i.e. not several MB in size - you should use either XmlDocument (the classic way) or XDocument (the new LINQ classes for XML processing). You will find lots of examples for both.
The following search results might give a hint as to when you should use which of those classes: http://www.google.com/search?hl=en&q=XmlDocument%20vs.%20XDocument. Personally, I would suggest using XDocument
, because its API is easier to use.