I have two List:
var listA = new List<List<int>> {
new List<int> { 1, 2, 3, 4 },
new List<int> { 4, 5, 6, 7 },
new List<int> { 6, 7, 8, 9 }
};
var listB = new List<string> { "number1", "number2", "number3", "number4" };
How to convert them to dictionary with listA is value, listB is key?