Use foreach loop to display the ArrayList : ArrayList Display « Data Structure « C# / CSharp Tutorial






using System; 
using System.Collections; 
 
class MainClass { 
  public static void Main() { 
    ArrayList al = new ArrayList(); 
     
    Console.WriteLine("Adding 6 elements"); 
    // Add elements to the array list 
    al.Add('C'); 
    al.Add('A'); 
    al.Add('E'); 
    al.Add('B'); 
    al.Add('D'); 
    al.Add('F'); 
 
    // Use foreach loop to display the list. 
    Console.Write("Contents: "); 
    foreach(char c in al) 
      Console.Write(c + " "); 
    Console.WriteLine("\n"); 
 
  }
}
Adding 6 elements
Contents: C A E B D F








11.23.ArrayList Display
11.23.1.Display the array list using array indexing
11.23.2.Use foreach loop to display the ArrayList