<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Dictionaries in C#: The Hashtable</title>
	<atom:link href="http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/feed/" rel="self" type="application/rss+xml" />
	<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/</link>
	<description>Making Microsoft .Net Development Magical</description>
	<lastBuildDate>Thu, 17 May 2012 06:40:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Michael Blackburn</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-29614</link>
		<dc:creator><![CDATA[Michael Blackburn]]></dc:creator>
		<pubDate>Wed, 13 Jul 2011 00:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-29614</guid>
		<description><![CDATA[You want an OrderedDictionary() for that. 
http://msdn.microsoft.com/en-us/library/system.collections.specialized.ordereddictionary.aspx]]></description>
		<content:encoded><![CDATA[<p>You want an OrderedDictionary() for that.<br />
<a href="http://msdn.microsoft.com/en-us/library/system.collections.specialized.ordereddictionary.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.collections.specialized.ordereddictionary.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Blackburn</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-29613</link>
		<dc:creator><![CDATA[Michael Blackburn]]></dc:creator>
		<pubDate>Tue, 12 Jul 2011 23:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-29613</guid>
		<description><![CDATA[Vanit, a hashtable requires that each key be unique. Once you add a key to a hashtable, you cannot add it again. You CAN update the value, as you see in his first code example, he changes the value at the key ArcaneCode to “Here I’ve changed the value.” 
You can do this:
hash.Add(&quot;myKey&quot;,1);
hash[&quot;myKey&quot;] = 2;

But you can&#039;t do this:
hash.Add(&quot;myKey&quot;,1);
hash.Add(&quot;myKey&quot;,2);]]></description>
		<content:encoded><![CDATA[<p>Vanit, a hashtable requires that each key be unique. Once you add a key to a hashtable, you cannot add it again. You CAN update the value, as you see in his first code example, he changes the value at the key ArcaneCode to “Here I’ve changed the value.”<br />
You can do this:<br />
hash.Add(&#8220;myKey&#8221;,1);<br />
hash["myKey"] = 2;</p>
<p>But you can&#8217;t do this:<br />
hash.Add(&#8220;myKey&#8221;,1);<br />
hash.Add(&#8220;myKey&#8221;,2);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vanit</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-27741</link>
		<dc:creator><![CDATA[vanit]]></dc:creator>
		<pubDate>Wed, 05 May 2010 13:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-27741</guid>
		<description><![CDATA[Hello 
When i am using the Hashtable them i am getting this error.

 Error Description: Item has already been added. Key in dictionary: &#039;ProjectList&#039; Key being added: &#039;ProjectList&#039;

can you please tell me where i am wrong ?

Thanks
Vanit]]></description>
		<content:encoded><![CDATA[<p>Hello<br />
When i am using the Hashtable them i am getting this error.</p>
<p> Error Description: Item has already been added. Key in dictionary: &#8216;ProjectList&#8217; Key being added: &#8216;ProjectList&#8217;</p>
<p>can you please tell me where i am wrong ?</p>
<p>Thanks<br />
Vanit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-26867</link>
		<dc:creator><![CDATA[Andy]]></dc:creator>
		<pubDate>Tue, 14 Jul 2009 04:13:16 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-26867</guid>
		<description><![CDATA[usign System.Collections;]]></description>
		<content:encoded><![CDATA[<p>usign System.Collections;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cees</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-26427</link>
		<dc:creator><![CDATA[Cees]]></dc:creator>
		<pubDate>Thu, 12 Feb 2009 17:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-26427</guid>
		<description><![CDATA[using ?]]></description>
		<content:encoded><![CDATA[<p>using ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Feitz</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-26425</link>
		<dc:creator><![CDATA[Feitz]]></dc:creator>
		<pubDate>Thu, 12 Feb 2009 11:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-26425</guid>
		<description><![CDATA[Thanks for the help tips in your website. just the information i need! =)]]></description>
		<content:encoded><![CDATA[<p>Thanks for the help tips in your website. just the information i need! =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gayathri</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-25281</link>
		<dc:creator><![CDATA[gayathri]]></dc:creator>
		<pubDate>Sat, 17 May 2008 06:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-25281</guid>
		<description><![CDATA[Hi, i have a problem. The data that i get using the hastable is gettin lost when i try to bind it to the combo box. Plss help me solve the issue.]]></description>
		<content:encoded><![CDATA[<p>Hi, i have a problem. The data that i get using the hastable is gettin lost when i try to bind it to the combo box. Plss help me solve the issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arif</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-24989</link>
		<dc:creator><![CDATA[Arif]]></dc:creator>
		<pubDate>Mon, 21 Apr 2008 03:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-24989</guid>
		<description><![CDATA[I want to fetch the Hashtable items in the same sequence in which I added in it using foreach loop with the help of DictionaryEntry. How it can be done.]]></description>
		<content:encoded><![CDATA[<p>I want to fetch the Hashtable items in the same sequence in which I added in it using foreach loop with the help of DictionaryEntry. How it can be done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zar</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-23061</link>
		<dc:creator><![CDATA[zar]]></dc:creator>
		<pubDate>Fri, 04 Jan 2008 10:34:27 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-23061</guid>
		<description><![CDATA[hi,
I need dictionary code , with c# and sql server 2000.
please help me.]]></description>
		<content:encoded><![CDATA[<p>hi,<br />
I need dictionary code , with c# and sql server 2000.<br />
please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arcanecode</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-4223</link>
		<dc:creator><![CDATA[arcanecode]]></dc:creator>
		<pubDate>Mon, 07 May 2007 12:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-4223</guid>
		<description><![CDATA[From what I have been able to determine David, the best answer I can find is &quot;it depends&quot;. 

I know, it seems like it&#039;s always the answer, but in part it&#039;s tied to your machine&#039;s hardware. Amount of RAM, CPU speed, single vs. dual core, etc. 

The best advice I can give is to do some trial tests at what you expect the upper bounds of your hashtable to be with realistic data in it, and see what happens. 

   Arcane]]></description>
		<content:encoded><![CDATA[<p>From what I have been able to determine David, the best answer I can find is &#8220;it depends&#8221;. </p>
<p>I know, it seems like it&#8217;s always the answer, but in part it&#8217;s tied to your machine&#8217;s hardware. Amount of RAM, CPU speed, single vs. dual core, etc. </p>
<p>The best advice I can give is to do some trial tests at what you expect the upper bounds of your hashtable to be with realistic data in it, and see what happens. </p>
<p>   Arcane</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-4141</link>
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Sat, 05 May 2007 22:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-4141</guid>
		<description><![CDATA[What are the size limits both in terms of key-length and in terms of # entries before it bogs down on add/retrieve?]]></description>
		<content:encoded><![CDATA[<p>What are the size limits both in terms of key-length and in terms of # entries before it bogs down on add/retrieve?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joanna Watts</title>
		<link>http://arcanecode.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-1400</link>
		<dc:creator><![CDATA[Joanna Watts]]></dc:creator>
		<pubDate>Fri, 09 Mar 2007 04:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/03/05/dictionaries-in-c-the-hashtable/#comment-1400</guid>
		<description><![CDATA[Hi, your homepage looks really good and gives great information! Anyway, nice job. Keep it up please!!! My best wishes to you all!]]></description>
		<content:encoded><![CDATA[<p>Hi, your homepage looks really good and gives great information! Anyway, nice job. Keep it up please!!! My best wishes to you all!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

