项目中看到同事写的这样几句话:
1 string xmlStr = WeiXin.RedPack.GetCachred(user.OpenID, red, "爱西姆", "摇一摇红包");//发红包 2 XmlDocument xmlDoc = new XmlDocument(); 3 xmlDoc.LoadXml(xmlStr); 4 if (xmlDoc.SelectSingleNode("xml/return_code").InnerText == "SUCCESS") 5 { 6 ...... 7 }
第4行中使用了XmlDocument对象SelectSingleNode(string)行为,刚开始看时有些疑惑,在鼠标右键转到定义查看并结合网上搜索的资料发现一个好玩的小宝贝——XPath
资料参考地址:菜鸟教程网>>XPath语法