Make an ArrayList Synchronized : ArrayList : Data Structure C# Examples


C# Examples » Data Structure » ArrayList »

 

Make an ArrayList Synchronized









    
using  System;
using  System.Collections;

class  MainClass
{
    static  void  Main(string[]  args)
    {
        ArrayList  a  =  new  ArrayList(10);
        ArrayList.Synchronized(a);
    }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Structure
» ArrayList