Create a string array and use the ICollection.CopyTo method to copy the contents of the ArrayList : ArrayList : Data Structure C# Examples


C# Examples » Data Structure » ArrayList »

 

Create a string array and use the ICollection.CopyTo method to copy the contents of the ArrayList









    
using  System;
using  System.Collections;

class  MainClass
{
        public  static  void  Main(string[]  args)
        {
                //  Create  a  new  ArrayList  and  populate  it.
                ArrayList  list  =  new  ArrayList(5);
                list.Add("B");
                list.Add("G");
                list.Add("J");
                list.Add("S");
                list.Add("M");

                
                string[]  array1  =  new  string[list.Count];
                list.CopyTo(array1,  0);

                Console.WriteLine("Array  1:");
                foreach  (string  s  in  array1)  
                {  
                        Console.WriteLine("\t{0}",s);  
                }
        
        }
}
    
   
  
   



Output

Array 1:
        B
        G
        J
        S
        M


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Structure
» ArrayList