考虑您具有以下 xml 结构:
<root>
<File> a.txt
<Version> 1.5 </Version>
</File>
<File> b.txt
<Version> 1.0 </Version>
</File>
</root>
如果我持有一个包含元素的变量:
<File> a.txt
<Version> 1.5 </Version>
</File>
如何获得下一个元素的句柄:
<File> b.txt
<Version> 1.0 </Version>
</File>
我一直在尝试一些事情,例如XElement.nextNode()
但得到了 null 而不是一个合理的句柄