使用 LINQ to XML,如何根据序号位置连接两组数据?
使用 LINQ to XML,如何根据序号位置连接两组数据?
<document>
<set1>
<value>A</value>
<value>B</value>
<value>C</value>
</set1>
<set2>
<value>1</value>
<value>2</value>
<value>3</value>
</set2>
</document>
基于上面的片段,我想将两个集合连接在一起,使得“A”和“1”位于同一记录中,“B”和“2”位于同一记录中,“C”和“3” " 位于同一条记录中。
Using LINQ to XML, how can I join two sets of data based on ordinal position?
<document>
<set1>
<value>A</value>
<value>B</value>
<value>C</value>
</set1>
<set2>
<value>1</value>
<value>2</value>
<value>3</value>
</set2>
</document>
Based on the above fragment, I would like to join the two sets together such that "A" and "1" are in the same record, "B" and "2" are in the same record, and "C" and "3" are in the same record.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是 Enumerable.Zip 扩展的作用在 .NET 4 中。您可以像这样编写(假设这是整个
XDocument
):如果您使用 .NET 3.5 或更早版本,则编写
并不太难邮政编码扩展名:
This is what the Enumerable.Zip extension does in .NET 4. You'd write it like so (assuming that this is the entire
XDocument
):If you're using .NET 3.5 or earlier, it's not too difficult to write the
Zip
extension:这是使用 Select 重载的另一种方法,其中将包含元素的索引
Here's another method using the overload of Select that will include an element's index