ArrayList alcollect = new ArrayList(); // Add individual items to the collection string str = "learn csharp"; alcollect.Add(str); alcollect.Add("hello world"); alcollect.Add(500); alcollect.Add(new object()); //csharp/7609