本文实例讲述了C#通过xpath查找xml指定元素的方法。分享给大家供大家参考。具体如下:
orders.xml文档内容如下
Remarkable Office Supplies Electronic Protractor 42.99 Invisible Ink 200.25
C#代码
using System;
using System.Xml;
public class XPathSelectNodes {
private static void Main() {
// Load the document.
Xmldocument doc = new Xmldocument();
doc.Load("orders.xml");
XmlNodeList nodes = doc.SelectNodes("/Order/Items/Item/Name");
foreach (XmlNode node in nodes) {
Console.WriteLine(node.InnerText);
}
Console.ReadLine();
}
}
输出结果
Electronic Protractor Invisible Ink
希望本文所述对大家的C#程序设计有所帮助。



