gpt4 book ai didi

c# - 双数组到对象数组?

转载 作者:行者123 更新时间:2023-11-30 19:02:22 26 4
gpt4 key购买 nike

我有以下数组:

double[] Series = new double[] { 7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6 }

系列调试 View :

> Series
--> [0]
--> [1]
--> ...
--> [10]
--> [11]

当我写以下内容时:

object[] object_array = new object[] { Series }

object_array调试 View :(不止一级)

> object_array
--> [0]
----> [0]
----> [1]
----> ...
----> [10]
----> [11]

我写了以下内容来防止新的水平:

object[] object_array = new object[Series.Length];
for (int i = 0; i < Series.Length; i++)
{
object_array[i] = Series[i];
}

这是其他解决方案之一。但我认为,可能有更好的方法来做到这一点。我使用上面的循环有问题吗?还是不同的方式?

(我使用 highcharts。如果我给出包含不止一个级别的数组,它就不起作用。)

谢谢。

最佳答案

var object_array = Series.Cast<object>().ToArray();

关于c# - 双数组到对象数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13361298/

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