vote up 13 vote down star
1

I been learning basics of generics and it looks like it can really improve the performance of the application. But, I am not able to see the generic equivalent of Hashtable. Please share some sample C# code for creating generic hashtable classes. I need this for a demo.

edit:Thanks for the answers.

flag

5 Answers

vote up 14 vote down check

Dictionary<TKey, TValue>

Note that Dictionary is not a 100% drop in replacement for HashTable. There is a slight difference in the way they handle NULLs.

link|flag
I think you missed 'not' out of that. – Jeff Yates Apr 21 at 14:27
I did, thank you. – Joel Coehoorn Apr 21 at 14:28
What is the slight difference? – rvarcher Apr 22 at 14:21
1  
The reason is that with a Dictionary, null might be a valid value for that key and mean something different than if the key doesn't exist at all. – Joel Coehoorn Apr 22 at 14:47
1  
Actually, Joel, I think the reason is that the value might be a reference type, which -cannot- be null. In a Hashtable the value was always Object, so returning null was at least possible. – Joel Mueller Apr 22 at 20:56
show 2 more comments
vote up 25 vote down

The generic version of Hashtable class is System.Collections.Generic.Dictionary class.

Sample code:

Dictionary<int, string> numbers = new Dictionary<int, string>( );
   numbers.Add(1, "one");
   numbers.Add(2, "two");
   // Display all key/value pairs in the Dictionary.
   foreach (KeyValuePair<int, string> kvp in numbers)
   {
      Console.WriteLine("Key: " + kvp.Key + "\tValue: " + kvp.Value);
   }
link|flag
1  
edited to link the MSDN loband version. – Gulzar Apr 21 at 14:28
Curious. Why does Microsoft call it a dictionary and others a hashtable? Hashtable always seemed mysterious to me until I read about dictionaries in generics. – johnny Apr 28 at 16:55
vote up 10 vote down

The generic version of a Hashtable is the Dictionary<TKey,TValue> class (link). Here is some sample code translated from using a Hashtable into the most direct equivalent of Dictionary (argument checking removed for sake of brevity)

public HashTable Create(int[] keys, string[] values) { 
  HashTable table = new HashTable();
  for ( int i = 0; i < keys.Length; i++ ) {
    table[keys[i]] = values[i];
  }
  return table;
}

public Dictionary<object,object> Create(int[] keys, string[] values) {
  Dictionary<object,object> map = Dictionary<object,object>();
  for ( int i = 0; i < keys.Length; i++) {
    map[keys[i]] = values[i];
  }
  return map;
}

That's a fairly direct translation. But the problem is that this does not actually take advantage of the type safe features of generics. The second function could be written as follows and be much more type safe and inccur no boxing overhead

public Dictionary<int,string> Create(int[] keys, string[] values) {
  Dictionary<int,string> map = Dictionary<int,string>();
  for ( int i = 0; i < keys.Length; i++) {
    map[keys[i]] = values[i];
  }
  return map;
}

Even better. Here's a completely generic version

public Dictionary<TKey,TValue> Create<TKey,TValue>(TKey[] keys, TValue[] values) {
  Dictionary<TKey,TValue> map = Dictionary<TKey,TValue>();
  for ( int i = 0; i < keys.Length; i++) {
    map[keys[i]] = values[i];
  }
  return map;
}

And one that is even further flexible (thanks Joel for pointing out I missed this)

public Dictionary<TKey,TValue> Create<TKey,TValue>(
    IEnumerable<TKey> keys, 
    IEnumerable<TValue> values) {

  Dictionary<TKey,TValue> map = Dictionary<TKey,TValue>();
  using ( IEnumerater<TKey> keyEnum = keys.GetEnumerator() ) {
    using ( IEnumerator<TValue> valueEnum = values.GetEnumerator()) {
      while (keyEnum.MoveNext() && valueEnum.MoveNext() ) { 
        map[keyEnum.Current] = valueEnum.Current;
      }
    }
  }
  return map;
}
link|flag
The next step is to use IEnumerable<T> rather than T[] for the function parameters. – Joel Coehoorn Apr 21 at 15:03
Yep. Adding that in just a sec – JaredPar Apr 21 at 15:06
vote up 1 vote down

The generic version of System.Collection.Hashtable is System.Collections.Generic.Dictionary<TKey, TValue>.

link|flag
when would I use one over the other? – johnny Apr 28 at 16:59
Unless you are trying to maintain interoperability with .NET 1.x, there is no benefit to using the non-generic collections over the generic collections. – bdukes Apr 28 at 17:14
See When to Use Generic Collections (msdn.microsoft.com/en-us/library/…) on MSDN for the full explanation – bdukes Apr 28 at 17:18
vote up 0 vote down

Dictionary.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.