I'm learning to use C# to read an XML file. In specific, I use this line:
XmlNodeList bookname = xmlDoc.GetElementsByTagName("book");
In the XML file, I have:
<book name="Side-on Apparition">
So how can I get the book name of "Side-on Apparition" into a string?