I'll add a second choice: the entire XML API in System.Xml.*
It took me a long time to get comfortable with it. XmlReader scared me away completely! I had to get my feet wet with XmlDocument, then slowly added a little XPath for selection (I needed to stop and learn about XML namespaces at that point). I learned a bit of XPathNavigator (which has some really underutilized features, like AppendChild()), XslCompiledTransform, all the XML Schema stuff, and then, finally, XmlReader and XmlWriter.
XmlReader and XmlWriter aren't that bad if you take your time, understand what the different kinds of node are, and allow four times as much time as you thought it would take you to debug!
But I've been able to do some fairly neat things with this stuff:
Process a 10GB XML document by
- using XmlReader.ReadSubTree for each element under the root, then
- using XslCompiledTransform on the subtree
This was very helpful with SSIS, wihch otherwise wanted to read the entire 10GB into memory.
Create sample data based on a set of XML Schemas, using the System.Xml.Schema.XmlSchemaValidator class
This class is a hidden gem. It really needs to be in a different namespace. Almost everything else in the System.Xml.Schema namespace is named "XmlSchema*something* and represents part of the object model of an XML Schema. The one class that fits that naming pattern but is not part of the SOM is xmlschemavalidator:
The XmlSchemaValidator class provides
an efficient, high-performance
mechanism to validate XML data against
XML schemas in a push-based manner.
Long story short, this thing will tell you, at any point in the logical processing of an XML document, what is valid at the current point. You then tell it which of the valid choices you made, and it will tell you what's valid at that point, etc. So, if you write one of the valid choices when it says they've valid, you'll wind up producing a valid output document.
Enough's been said about LINQ to XML, so I won't say more. I will finally just mention the System.Runtime.Serialization.XmlDictionaryReader and XmlDictionaryWriter classes, just so I can say "binary XML" in a sentence.