gpt4 book ai didi

c# - 将 List 转换为 object[]

转载 作者:行者123 更新时间:2023-11-30 19:04:37 25 4
gpt4 key购买 nike

我有一些动态列表集合,这是在运行时添加的。我想将那些 ListColl 转换为对象数组。下面是我的代码

 List<double> ListColl = new List<double>();
// This is added dynamically and finally want to convert this list into object array
values.Add(10);
values.Add(40);
values.Add(20);

预期的输出是这样的

object[] objArray = new object[] { 10, 40, 20 };

我使用了 object[] objArray = ListColl.ToArray()。但这是抛出错误。

如何将这个列表集合转换成对象数组

最佳答案

您可以使用 Cast<object>() 调用后接 ToArray() :

object[] objArray = ListColl.Cast<object>().ToArray();

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

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