/******************************************************************************** Copyright 2008 Rick Miller and Pulp Free Press - All Rights Reserved The source code contained within this file is intended for educational purposes only. No warranty as to the quality of the code is expressed or implied. Feel free to use this code provided you include the copyright notice in its entirety. **********************************************************************************/ using System; using System.Collections.Generic; public class ArrayTestApp { public static void Main(){ IList da = new List(); Console.WriteLine("The array contains " + da.Count + " objects."); da.Add("Ohhh if you loved C# like I love C#!!"); Console.WriteLine(da[0].ToString()); for(int i = 1; i<26; i++){ da.Add(i); } Console.WriteLine("The array contains " + da.Count + " objects."); for(int i=0; i