เมื่อคืนฉันฝันว่าสิ่งต่อไปนี้เป็นไปไม่ได้ แต่ในความฝันเดียวกันมีคนจาก 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();