Reputation: 3039
var listA = new List<string> {"One", "Two", "Three"};
var listB = new List<int> {1, 2, 3};
var listC = new List<Tuple<string, int>>();
Here I've got two Lists with the same length. Is there a way to fill third listC
with LINQ?
"One", 1
"Two", 2
"Three", 3
Upvotes: 1
Views: 244