在多个名称迭代器上移动下一个
我有两个 XPathNodeIterator nodeI1 和 nodeI2。
我有一个循环应该遍历每个 while(nodeI1.MoveNext())
如何让这个循环在nodeI1完成后自动启动nodeI2.MoveNext()?我不想复制粘贴所有代码并进行另一个 while 循环。
I have two XPathNodeIterator nodeI1 and nodeI2.
I have a loop which should go through each
while(nodeI1.MoveNext())
How can I get this loop to automatically start nodeI2.MoveNext() after nodeI1 is done? I don't want to copy paste all the code and make another while loop.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种简单的方法是将循环放入接受节点的方法中。然后调用两次。
One straightforward way is to put your loop into a method that takes in a node. Then call it twice.