Introduction to XML with C#
<users> <user name="John Doe" age="42" /> <user name="Jane Doe" age="39" /> </users>As you can see, for a data format, this is actually pretty easy to read, and because it's such a widespread standard, almost every programming language has built-in functions or classes to deal with it. C# is definitely one of them, with an entire namespace, the System.Xml namespace, to deal with pretty much any aspect of XML. In the following chapters, we will look into using them, both for writing and reading XML. Read on!
Having problems with this chapter? Ask in our forums!