首页 > 后端开发 > C++ > 如何在 C# 中将 System.Array 转换为列表?

如何在 C# 中将 System.Array 转换为列表?

Mary-Kate Olsen
发布: 2025-01-03 14:46:43
原创
389 人浏览过

How Can I Convert a System.Array to a List in C#?

将 System.Array 转换为列表:可能吗?

问题中表达的查询,将整数数组转换为列表使用“OfType()”无法按预期工作。该错误翻译为“无法将类型为‘System.Int32’的数组转换为类型为‘List’”。

相反,有几种可行的方法来实现此转换:

转换为列表

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板