Linq to Xml 获取最后一个元素 - .Net 3.5

发布于 2024-11-05 21:50:38 字数 284 浏览 0 评论 0原文

我试图根据它的名称获取最后一个元素。

我知道 .Net 4 上有 Last() 方法,但由于我必须使用 .Net 3.5,我怎样才能找到它。

例子: 用作日志文件的 xml。 我的方法签名:GetLast(XName xName),并返回指定的最后一个元素(ExecutionReport、Scenario、Function 等) 我想获取这个元素以便之后添加元素。

这是 Xml 文件: Xml file

I'm trying to fetch the last element according to it's name.

I know there is Last() method on .Net 4, but since I must work with .Net 3.5 how can I find it.

Example:
The xml used as log file.
My method signature: GetLast(XName xName), and returns the last element specified (ExecutionReport, Scenario, Function etc.)
I would like to get this element in order to add element afterwards.

This is the Xml file: Xml file

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浅黛梨妆こ 2024-11-12 21:50:38

.Last() 也存在于 .Net 3.5 中。

您可以编写parent.Elements("ChildName").Last()

.Last() exists in .Net 3.5 too.

You can write parent.Elements("ChildName").Last().

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