I have to read the xml node \"name\" from the following XML, but I don\'t know how to do it.
Here is the XML:
Maybe try this
XmlNodeList nodes = root.SelectNodes("//games/game") foreach (XmlNode node in nodes) { listBox1.Items.Add(node["name"].InnerText); }