LINQ to XML 查询返回所有子元素的列表
我有一个 XML 文档,看起来像这样。
<Root>
<Info>....</Info>
<Info>....</Info>
<response>....</response>
<warning>....</warning>
<Info>....</Info>
</Root>
我如何编写 LINQ to XML 查询,以便它返回一个包含每个子元素(在本例中为 的所有五个子元素)的 IEnumerable,以便我可以迭代它们。
子元素的顺序不确定,出现的次数也不确定。
提前致谢。
I have got an XML document which looks something like this.
<Root>
<Info>....</Info>
<Info>....</Info>
<response>....</response>
<warning>....</warning>
<Info>....</Info>
</Root>
How can i write a LINQ to XML query so that it returns me an IEnumerable containing each child element, in this case all five child elements of , so that i could iterate over them.
The order of child elements is not definite, neither is number of times the may appear.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以调用
Elements
方法来直接获取XElement
内的所有元素。例如:
You can call the
Elements
method to get all of the elements directly inside anXElement
.For example:
基本上,方法
Elements() 返回 IEnumerable
,这就是您正在寻找的吗?还是看看msdn吧..
http://msdn.microsoft.com/en-us/library/bb308960。 ASPX
Basically the method
Elements() returns IEnumerable<XElement>
, is that what you are looking for?Take a look in msdn though..
http://msdn.microsoft.com/en-us/library/bb308960.aspx