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:
You are really close - you found the game node, why don't you go a step further and just get the name node if it exists as a child under game?
in your for each loop:
listBox1.Items.Add(node.SelectSingleNode("game/name").InnerText);