有没有办法从 LINQ 转换List<List<int>>
为double[][]
使用 LINQ?
我已经想出了如何从List<List<int>>
到,int[][]
但我被困在演员阵容上。这是我到目前为止所拥有的:
List<List<int>> ints = new List<List<int>>()
{
new List<int>(){0, 1, 2},
new List<int>(){0, 1, 2},
new List<int>(){0, 1, 2},
};
// int[][]
ints.Select(x => x.ToArray()).ToArray();