ICollection : ICollection : Data Structure C# Examples


C# Examples » Data Structure » ICollection »

 

ICollection









    
using  System;
using  System.Collections;
using  System.Collections.Generic;
using  System.Collections.ObjectModel;
using  System.Text;

public  class  MainClass
{

        public  static  void  Main()
        {
                ICollection<int>  myCollection  =  new  Collection<int>();

                myCollection.Add(105);
                myCollection.Add(232);
                myCollection.Add(350);
                
                int[]  myArray  =  new  int[myCollection.Count];
                myCollection.CopyTo(myArray,  0);
                for  (int  i  =  0;  i  <  myArray.Length;  i++)
                        Console.WriteLine(myArray[i]);

        }
}
    
   
  
   



Output

105
232
350


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Structure
» ICollection