//xmlFile是xml文件,nodeName是节点名,attributeName是节点的属性名,因为节点名是可以重复的,所以用list存放返回值
public List
{
List
XmlDocument xx = new XmlDocument();
xx.Load(xmlFile);
XmlNodeList xxList = xx.GetElementsByTagName(nodeName);
foreach (XmlNode xxNode in xxList)
{
retList.Add(xxNode.Attributes[attributeName].Value);
}
return retList;
}
说实话,没理解的很清楚,不知道是不是这个
prive string GetSICode(string fileInfo,string a,string b)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml(fileInfo);
string temp = "";
XmlNode node = doc.DocumentElement[a][b];
temp = node.InnerText.Trim();
return temp;
}
其中fileInfo 是你从xml读出的信息