gpt4 book ai didi

c# - System.Array 到列表的转换

转载 作者:IT王子 更新时间:2023-10-29 03:28:55 26 4
gpt4 key购买 nike

昨晚梦见以下不可能。但在同一个梦中,来自 SO 的人告诉我并非如此。因此我想知道是否可以将 System.Array 转换为 List

Array ints = Array.CreateInstance(typeof(int), 5);
ints.SetValue(10, 0);
ints.SetValue(20, 1);
ints.SetValue(10, 2);
ints.SetValue(34, 3);
ints.SetValue(113, 4);

List<int> lst = ints.OfType<int>(); // not working

最佳答案

为自己省去一些痛苦......

using System.Linq;

int[] ints = new [] { 10, 20, 10, 34, 113 };

List<int> lst = ints.OfType<int>().ToList(); // this isn't going to be fast.

也可以...

List<int> lst = new List<int> { 10, 20, 10, 34, 113 };

或者...

List<int> lst = new List<int>();
lst.Add(10);
lst.Add(20);
lst.Add(10);
lst.Add(34);
lst.Add(113);

或者...

List<int> lst = new List<int>(new int[] { 10, 20, 10, 34, 113 });

或者...

var lst = new List<int>();
lst.AddRange(new int[] { 10, 20, 10, 34, 113 });

关于c# - System.Array 到列表的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1603170/

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