Mega Code Archive

 
Categories / C# by API / System Collections
 

ArrayList InsertRange()

using System; using System.Collections; class MainClass {   public static void Main()   {     ArrayList myArrayList = new ArrayList();          myArrayList.Add("is");     myArrayList.Insert(1, "is");     string[] myStringArray = {"a", "test"};     myArrayList.AddRange(myStringArray);     string[] anotherStringArray = {"Here's", "some", "more", "text"};     myArrayList.InsertRange(myArrayList.Count, anotherStringArray);     DisplayArrayList("myArrayList", myArrayList);   }   public static void DisplayArrayList(string arrayListName, ArrayList myArrayList)   {     for (int i = 0; i < myArrayList.Count; i++){       Console.WriteLine(arrayListName + "[" + i + "] = " +         myArrayList[i]);     }   }    }