Ostatniej nocy śniło mi się, że następujące rzeczy są niemożliwe. Ale w tym samym śnie ktoś z SO powiedział mi inaczej. Dlatego chciałbym wiedzieć, czy jest to możliwe do konwersji System.Array
doList
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);
do
List<int> lst = ints.OfType<int>(); // not working
Array
to, co faktycznie jest, a int[]
następnie możesz użyć ToList
:((int[])ints).ToList();