昨晚我梦到以下事情是不可能的。但是在同一个梦中,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
2
下面的链接显示了它在c#codegateway.com
您必须将其
—
Tim Schmelter 2015年
Array
转换为实际的值,int[]
然后可以使用ToList
:((int[])ints).ToList();