LINQ从两个长度相同的集合中选择

时间:2015-09-02 22:54:47

标签: c# linq list select collections

var listA = new List<string> {"One", "Two", "Three"};
var listB = new List<int> {1, 2, 3};
var listC = new List<Tuple<string, int>>();

在这里,我有两个长度相同的列表。有没有办法用LINQ填充第三个listC

"One", 1
"Two", 2
"Three", 3

1 个答案:

答案 0 :(得分:3)

我认为您正在寻找Zip扩展方法:

var listA = new List<string> { "One", "Two", "Three" };
var listB = new List<int> { 1, 2, 3 };
var listC = listA.Zip(listB, (s, i) => new Tuple<string, int>(s, i)).ToList();