What is the best way to convert a list into an array of type int[][]?
int[][]
List> lst = new List>();
int[][] arrays = lst.Select(a => a.ToArray()).ToArray();