using System.Collections;
public static void Main( string []args)
ArrayList list = new ArrayList();
Console.WriteLine("Count the number of Array : " + list.Count );
foreach ( object o in list)
Console.WriteLine("Enter the name of the list :" + o);
Console.WriteLine("Count the number of Array : " + list.Count+"\n" );
foreach ( object o in list )
Console.WriteLine("Enter the name of the list :" + o);