摘要:
XmlDocument xd = new XmlDocument(); xd.Load("XML文件路径"); XmlElement xe = xd["root"]; XmlElement xeUpLoadResult = xe["Result"]; for (int i = 0; i < xeUpLoadResult.ChildNodes.Count; i++) { XmlAttribute _barId = xeUpLoadResult.ChildNodes[i].Attributes["id"]; Xm 阅读全文