gpt4 book ai didi

c# - 计算 XDocument 上的子节点

转载 作者:可可西里 更新时间:2023-11-01 08:56:51 25 4
gpt4 key购买 nike

有没有办法计算 XDocument 上的子节点?

我寻找计数方法或属性,但找不到。

谢谢狮子座

最佳答案

var doc = XDocument.Load(fileName);
int descendantsCount = doc.Descendants().Count(); // counts ALL descendants elements
int childrenCount = doc.Root.Elements().Count(); // counts direct children of the root element

关于c# - 计算 XDocument 上的子节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7108697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com