Mega Code Archive

 
Categories / C# by API / System Collections
 

New ArrayList(Collection c)

using System; using System.Collections; class MainClass {   public static void Main()   {     ArrayList myArrayList = new ArrayList();     myArrayList.Add("This");     myArrayList.Add("is");     myArrayList.Add("a");     myArrayList.Add("test");     ArrayList anotherArrayList = new ArrayList(myArrayList);     Console.WriteLine(anotherArrayList);   } }