XmlDocument document = new XmlDocument();
document.Load("youfile.xml");
XmlElement root = doc.DocumentElement;
//Display the contents of the child nodes.
if (root.HasChildNodes)
{
for (int i=0; i<root.ChildNodes.Count; i++)
{
// 这里修改成你要的
Console.WriteLine(root.ChildNodes[i].InnerText);
}
}