01.List<string> stringlist = new List<string>();
02.stringlist.Add("Obj1");
03.stringlist.Add("Obj2");
04.stringlist.Add("Obj3");
05.
06.//You Can Store Your List In The Arraylist...
07.System.Collections.ArrayList MyList = new System.Collections.ArrayList();
08.
09.//It Will Add All List Items Into Arraylist...
10.MyList.AddRange(stringlist.ToArray());
11.
12.
13.//Like Below You Can Access The Items Of The Arraylist Using It's Index...
14.for (int i = 0; i < MyList.Count; i++)
15.{
16. //Show Message one By One For Each List Items(Your Objects)...
17. MessageBox.Show(MyList[i].ToString());
18.}