All
I have three collections:
{"Alex", "Anna"}
{19, 20}
{"A", "B"}
I want to project them all into one sequence of objects of type "Student" using LINQ and the following lambda or something:
(name, age, grade)=>new Student(name, age, grade)
Result should be two Student objects ("Alex", 19, "A") and ("Anna", 20, "B")
How can I do this?