Collections Data Structure C#

using System;
using System.Collections;
using System.Globalization;
public class SamplesHashtable  {
   public static void Main()  {
      CultureInfo myCul = new CultureInfo( "tr-TR" );
      Hashtable myHT4 = new Hashtable( new CaseInsensitiveHashCodeProvider( myCul ), new CaseInsensitiveComparer( myCul ) );
      myHT4.Add("FIRST", "Hello");
      myHT4.Add("SECOND", "World");
   }
}