System.Array到列表的转换

System.Array到列表的转换,第1张

System.Array到列表转换

减轻自己的痛苦…

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 });


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5139940.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存