昨夜、次のことが不可能だと夢見ました。しかし、同じ夢の中で、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
Array
それを実際にあるものにキャストするint[]
必要があります、それからあなたは使うことができますToList
:((int[])ints).ToList();