我正在爲我的項目重新創建Space Invaders,並對所有入侵者和其他事物使用了List,但我需要使用數組。我怎樣才能把這個列表變成一個數組,我不熟悉它們。見下面的代碼。C#:將列表<PictureBox>轉換爲數組
List<PictureBox> listInvaders;
public Form1()
{
InitializeComponent();
InvaderAnim.Start();
listInvaders = new List<PictureBox> {invader1, invader2, invader3, invader4, etc};
非常感謝!
'listInvaders.ToArray()'是答案和-1缺乏研究。 –