标签:集合 each 查询 文本 方法 处理 文档 sel cte
说明LINQ处理XML文件的一个类
添加引用
using System.Linq;
using System.Xml.Linq;
using System.Xml.XPath;
XDocument xml = XDocument.Load("IOS.xml");
XElement root = xml.Root;
要记得引用 using System.Xml.XPath;
xml.Root.XPathSelectElement("//XCUIElementTypeApplication");
foreach (XElement item in xml.Elements())
{
//xml中的属性都在里面
c.Attributes()
}
XDocument代表xml文档,Xelement则代表具体的某个元素节点
获取属性XElement.Attribute(属性名)
获取属性集合
XElement.Attributes(属性名)
标签:集合 each 查询 文本 方法 处理 文档 sel cte
原文地址:https://www.cnblogs.com/tangpeng97/p/13230515.html