如何把一个array复制到arrayList里

 方法一,使用foreach循环,将array数组中的数据逐步放入ArrayList的对象中

 方法二,使用Copy方法,进行数据的复制

 方法三,使用ArrayList的adpater的方法,将整个Array对象封装到ArrayList对象中

 

//author:renfuming

public static void  main(string[]  renargs)

{

      int[]   arrayInt  =new int[] {1,2,3,4}

     ArrayList arrayInt =ArrayList();

    //方法一

    foreach(int a in arrayInt)

    {

        arrayInt.Add(a);

     }   

    Console.WrliteLine(arrlistInt2[2].ToString());//输出3

   //方法二

   ArrayList arrlistInt2=new ArrayList();

    arrlistInt2=ArrayList.Adapter(arrayInt);

    Console.WriteLine(arrlistInt2[2].ToString());//输出3

   //逆向转换

   Array resultArr=(int[] )arrlistInt2.ToArray(tyoeof(int));

  Console.WriteLine(resulArr.GetValue(2));//输出3

}

    原文作者:luotao_66
    原文地址: https://blog.csdn.net/luotao_66/article/details/3357701
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞