using System.Collections;
public static void Main()
var arlist1 = new ArrayList();
var arlist2 = new ArrayList()
1, "Bill", " ", true, 4.5, null
int[] arr = { 100, 200, 300, 400 };
arlist1.AddRange(arlist2);
Console.WriteLine("ArrayList Elements");
Console.WriteLine(arlist1.Count);
for(int i = 0; i< arlist1.Count; i++)
Console.WriteLine(arlist1[i]);