作者:zoey | 来源:互联网 | 2017-05-14 02:24
代码片段,代码分享,PHP代码分享,Java代码分享,Ruby代码分享,Python代码分享,HTML代码分享,CSS代码分享,SQL代码分享,JavaScript代码分享
orders.xml文档内容如下
Remarkable Office Supplies
-
Electronic Protractor
42.99
-
Invisible Ink
200.25
//该代码片段来自于:www.sharejs.com/codes/csharp/7775
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();
}
}
//该代码片段来自于:www.sharejs.com/codes/csharp/7775
以上就是C#中通过xpath查找xml的指定元素的代码实例的详细内容,更多请关注 第一PHP社区 其它相关文章!