Mark a Hashtable to be Synchronized : Hashtable : Data Structure C# Examples


C# Examples » Data Structure » Hashtable »

 

Mark a Hashtable to be Synchronized









    
using  System;
using  System.Collections;

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




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Structure
» Hashtable