gpt4 book ai didi

c# - 将 List> 转换为 double[][]

转载 作者:行者123 更新时间:2023-11-30 18:57:07 25 4
gpt4 key购买 nike

有没有办法从List<List<int>>转换至 double[][]使用 LINQ?

我已经想出如何从 List<List<int>> 得到至 int[][]但我被困在 Actor 阵容中。这是我目前所拥有的:

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();

最佳答案

double[][] doubles = ints.Select(x => x.Select(y => (double)y).ToArray())
.ToArray();

关于c# - 将 List<List<int>> 转换为 double[][],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13826741/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com