C# ArrayList 转换成 Array

使用 ArrayList 的 CopyTo 如下:

string[] array = new string[arrayList.Count];
arrayList.CopyTo(array);

相关阅读

  • C# 一维数组

你可能感兴趣的