Use ArrayList.ToArray to create a strongly typed string array from the contents of the collection : ArrayList ToArray : Data Structure C# Examples


C# Examples » Data Structure » ArrayList ToArray »

 

Use ArrayList.ToArray to create a strongly typed string array from the contents of the collection









    
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[]  array3  =  (string[])list.ToArray(typeof(String));

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

        }
}
    
   
  
   



Output

Array 3:
        B
        G
        J
        S
        M


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Structure
» ArrayList ToArray