LINQ to XML 查询返回所有子元素的列表

发布于 2024-08-23 20:47:25 字数 370 浏览 6 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凉薄对峙 2024-08-30 20:47:25

您可以调用 Elements 方法来直接获取 XElement 内的所有元素。
例如:

doc.Root.Elements()

You can call the Elements method to get all of the elements directly inside an XElement.
For example:

doc.Root.Elements()
浪荡不羁 2024-08-30 20:47:25

基本上,方法 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文