Hashtable.Synchronized : HashTable « System.Collections « C# / C Sharp by API






Hashtable.Synchronized

  
using System;
using System.Collections;

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

   
    
  








Related examples in the same category

1.HashTable.Keys
2.HashTable.Remove
3.Hashtable.Add
4.Hashtable.ContainsKey
5.Hashtable.ContainsValue
6.Hashtable.Keys.CopyTo
7.Hashtable.Values
8.Hashtable.Values.CopyTo