What is the Generic version of a Hashtable? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T00:27:12Zhttp://stackoverflow.com/feeds/question/772831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable13What is the Generic version of a Hashtable?Charlie2009-04-21T14:23:56Z2009-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#77283514Answer by Joel Coehoorn for What is the Generic version of a Hashtable?Joel Coehoorn2009-04-21T14:25:27Z2009-04-21T14:25:27Z<p><a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow"><code>Dictionary<TKey, TValue></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#7728361Answer by bdukes for What is the Generic version of a Hashtable?bdukes2009-04-21T14:25:29Z2009-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<TKey, TValue></code></a>.</p>
http://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable/772837#77283725Answer by Gulzar for What is the Generic version of a Hashtable?Gulzar2009-04-21T14:25:37Z2009-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<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);
}
</code></pre>
http://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable/772866#77286610Answer by JaredPar for What is the Generic version of a Hashtable?JaredPar2009-04-21T14:31:13Z2009-04-21T15:08:45Z<p>The generic version of a Hashtable is the <code>Dictionary<TKey,TValue></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 < 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;
}
</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<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;
}
</code></pre>
<p>Even better. Here's a completely generic version</p>
<pre><code>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;
}
</code></pre>
<p>And one that is even further flexible (thanks Joel for pointing out I missed this)</p>
<pre><code>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;
}
</code></pre>
http://stackoverflow.com/questions/772831/what-is-the-generic-version-of-a-hashtable/778200#7782000Answer by Joan Venge for What is the Generic version of a Hashtable?Joan Venge2009-04-22T16:51:55Z2009-04-22T16:51:55Z<p><a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow">Dictionary</a>.</p>