Archives

Archive for January, 2006

You have to use: DictionaryEntry Hashtable ht = new Hashtable(); ht["one"] = 1; ht["two"] = 2; ht["three"] = 3; foreach(DictionaryEntry data in ht) { Debug.WriteLine( data.Key + " => " data.Value ); }

Jan 13th, 2006 | Filed under C#