Display the array list using array indexing : ArrayList Display : Data Structure C# Examples


C# Examples » Data Structure » ArrayList Display »

 

Display the array list using array indexing









    
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');  
  
        Console.Write("Current  contents:  ");  
        for(int  i=0;  i  <  al.Count;  i++)  
            Console.Write(al[i]  +  "  ");  
        Console.WriteLine("\n");  
    }

}
    
   
  
   



Output

Adding 6 elements
Current contents: C A E B D F


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Structure
» ArrayList Display