I want to rearrange a nested list, group each items of the same index from list into a list.
Here is what I want to achieve.
INPUT
{
["a", "b", "c"],
["m", "n", "o"],
["x", "y", "z"],
}
OUTPUT
{
["a", "m", "x"],
["b", "n", "y"],
["c", "o", "z"],
}
How do I achieve this using C#?