What is the Generic version of a Hashtable? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:27:12Z http://stackoverflow.com/feeds/question/772831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable 13 What is the Generic version of a Hashtable? Charlie 2009-04-21T14:23:56Z 2009-04-28T16:43:56Z <p>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. </p> <p>edit:Thanks for the answers.</p> http://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable/772835#772835 14 Answer by Joel Coehoorn for What is the Generic version of a Hashtable? Joel Coehoorn 2009-04-21T14:25:27Z 2009-04-21T14:25:27Z <p><a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow"><code>Dictionary&lt;TKey, TValue&gt;</code></a></p> <p>Note that Dictionary is not a 100% drop in replacement for HashTable. There is a slight difference in the way they handle NULLs.</p> http://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable/772836#772836 1 Answer by bdukes for What is the Generic version of a Hashtable? bdukes 2009-04-21T14:25:29Z 2009-04-21T14:25:29Z <p>The generic version of <a href="http://msdn.microsoft.com/en-us/library/system.collections.hashtable.aspx" rel="nofollow"><code>System.Collection.Hashtable</code></a> is <a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow"><code>System.Collections.Generic.Dictionary&lt;TKey, TValue&gt;</code></a>.</p> http://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable/772837#772837 25 Answer by Gulzar for What is the Generic version of a Hashtable? Gulzar 2009-04-21T14:25:37Z 2009-04-21T14:27:40Z <p>The generic version of Hashtable class is <a href="http://msdn.microsoft.com/en-us/library/xfhwa508%28loband%29.aspx" rel="nofollow">System.Collections.Generic.Dictionary</a> class.</p> <p><a href="http://en.csharp-online.net/CSharp%5FGenerics%5FRecipes%E2%80%94Replacing%5Fthe%5FHashtable%5Fwith%5FIts%5FGeneric%5FCounterpart" rel="nofollow">Sample code</a>:</p> <pre><code>Dictionary&lt;int, string&gt; numbers = new Dictionary&lt;int, string&gt;( ); numbers.Add(1, "one"); numbers.Add(2, "two"); // Display all key/value pairs in the Dictionary. foreach (KeyValuePair&lt;int, string&gt; kvp in numbers) { Console.WriteLine("Key: " + kvp.Key + "\tValue: " + kvp.Value); } </code></pre> http://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable/772866#772866 10 Answer by JaredPar for What is the Generic version of a Hashtable? JaredPar 2009-04-21T14:31:13Z 2009-04-21T15:08:45Z <p>The generic version of a Hashtable is the <code>Dictionary&lt;TKey,TValue&gt;</code> class (<a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow">link</a>). Here is some sample code translated from using a Hashtable into the most direct equivalent of Dictionary (argument checking removed for sake of brevity)</p> <pre><code>public HashTable Create(int[] keys, string[] values) { HashTable table = new HashTable(); for ( int i = 0; i &lt; keys.Length; i++ ) { table[keys[i]] = values[i]; } return table; } public Dictionary&lt;object,object&gt; Create(int[] keys, string[] values) { Dictionary&lt;object,object&gt; map = Dictionary&lt;object,object&gt;(); for ( int i = 0; i &lt; keys.Length; i++) { map[keys[i]] = values[i]; } return map; } </code></pre> <p>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</p> <pre><code>public Dictionary&lt;int,string&gt; Create(int[] keys, string[] values) { Dictionary&lt;int,string&gt; map = Dictionary&lt;int,string&gt;(); for ( int i = 0; i &lt; keys.Length; i++) { map[keys[i]] = values[i]; } return map; } </code></pre> <p>Even better. Here's a completely generic version</p> <pre><code>public Dictionary&lt;TKey,TValue&gt; Create&lt;TKey,TValue&gt;(TKey[] keys, TValue[] values) { Dictionary&lt;TKey,TValue&gt; map = Dictionary&lt;TKey,TValue&gt;(); for ( int i = 0; i &lt; keys.Length; i++) { map[keys[i]] = values[i]; } return map; } </code></pre> <p>And one that is even further flexible (thanks Joel for pointing out I missed this)</p> <pre><code>public Dictionary&lt;TKey,TValue&gt; Create&lt;TKey,TValue&gt;( IEnumerable&lt;TKey&gt; keys, IEnumerable&lt;TValue&gt; values) { Dictionary&lt;TKey,TValue&gt; map = Dictionary&lt;TKey,TValue&gt;(); using ( IEnumerater&lt;TKey&gt; keyEnum = keys.GetEnumerator() ) { using ( IEnumerator&lt;TValue&gt; valueEnum = values.GetEnumerator()) { while (keyEnum.MoveNext() &amp;&amp; valueEnum.MoveNext() ) { map[keyEnum.Current] = valueEnum.Current; } } } return map; } </code></pre> http://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable/778200#778200 0 Answer by Joan Venge for What is the Generic version of a Hashtable? Joan Venge 2009-04-22T16:51:55Z 2009-04-22T16:51:55Z <p><a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow">Dictionary</a>.</p>