XmlDocument doc = new XmlDocument();
doc.Load("这就是路径");
XmlNode xn = doc.SelectSingleNode("/Root/game");
string version= xn.Attributes["version"].Value.ToString();
相当于一个属性
伪代码类似如下
if (xe.Name == "game")
{
string str = xe.GetAttribute("version");
}
可以参考
http://zhidao.baidu.com/question/296447272.html
game是节点,version是属性。。 取出来的值是 2.0