昨晚我梦到以下事情是不可能的。但是在同一个梦中,SO的某人告诉我否则。因此,我想知道是否有可能转换System.Array为List
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 });