String clientcommand = "<Move user=\"zsp\" target=\"TARGET_CELL\" map=\"mapId\"/>";
XmlDocument xmldoc = new XmlDocument();//实例化一个XmlDocument对像
xmldoc.LoadXml(clientcommand);//加载为xml文档
XmlNode node = xmldoc.FirstChild;//提取xml文档的第一个节点,其实这里也就那么一个节点,呵呵
XmlAttribute user = node.Attributes["user"];
String name = user.Value.ToString();//把user属性的值赋给一个String
XmlAttribute map = node.Attributes["map"];
String clientMap = map.Value.ToString();//把map属性的值赋给一个String
Console.WriteLine("name:{0}, map::{1}", name, clientMap);
XmlDocument xmldoc = new XmlDocument();//实例化一个XmlDocument对像
xmldoc.LoadXml(clientcommand);//加载为xml文档
XmlNode node = xmldoc.FirstChild;//提取xml文档的第一个节点,其实这里也就那么一个节点,呵呵
XmlAttribute user = node.Attributes["user"];
String name = user.Value.ToString();//把user属性的值赋给一个String
XmlAttribute map = node.Attributes["map"];
String clientMap = map.Value.ToString();//把map属性的值赋给一个String
Console.WriteLine("name:{0}, map::{1}", name, clientMap);