What is the best way to convert a list into an array of type int[][]?
int[][]
List> lst = new List>();
you can easily do it using linq.
int[][] arrays = lst.Select(a => a.ToArray()).ToArray();
but if you want another way you can loop through the list and manually generate the 2d array.
how to loop through nested list