将 System.Array 转换为列表:可能吗?
问题中表达的查询,将整数数组转换为列表使用“OfType
相反,有几种可行的方法来实现此转换:
转换为列表
int[] ints = new[] { 10, 20, 10, 34, 113 }; List<int> lst = ints.ToList();
创建一个新的列表
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 转换为列表?的详细内容。更多信息请关注PHP中文网其他相关文章!