<?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/"
		>
<channel>
	<title>Comments on: Do not forget Array</title>
	<atom:link href="http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/</link>
	<description>Wrecks of code floating in the sea of Internet By Ricci Gian Maria</description>
	<lastBuildDate>Thu, 09 Feb 2012 16:15:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: alkampfer</title>
		<link>http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/comment-page-1/#comment-2515</link>
		<dc:creator>alkampfer</dc:creator>
		<pubDate>Sun, 14 Jun 2009 17:56:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/#comment-2515</guid>
		<description>@liviu: hashSet are great, but they are avaliable only in .net 3.5, array are avaliable since 1.0 ;). If you need Set semantics and much more, even in .NET 2.0), wintellect powercollection are really a good choiche.

@Amar: You are right :) both of the measure are done in millisecond. 

alk.</description>
		<content:encoded><![CDATA[<p>@liviu: hashSet are great, but they are avaliable only in .net 3.5, array are avaliable since 1.0 <img src='http://www.codewrecks.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . If you need Set semantics and much more, even in .NET 2.0), wintellect powercollection are really a good choiche.</p>
<p>@Amar: You are right <img src='http://www.codewrecks.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  both of the measure are done in millisecond. </p>
<p>alk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amar</title>
		<link>http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/comment-page-1/#comment-2513</link>
		<dc:creator>Amar</dc:creator>
		<pubDate>Sat, 13 Jun 2009 17:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/#comment-2513</guid>
		<description>In your first example, you quote &quot;10.200 milliseconds&quot;, and in your second example, you quote &quot;2.392 seconds&quot; -- I think your units are incorrect :-)</description>
		<content:encoded><![CDATA[<p>In your first example, you quote &#8220;10.200 milliseconds&#8221;, and in your second example, you quote &#8220;2.392 seconds&#8221; &#8212; I think your units are incorrect <img src='http://www.codewrecks.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SubZer0</title>
		<link>http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/comment-page-1/#comment-2512</link>
		<dc:creator>SubZer0</dc:creator>
		<pubDate>Sat, 13 Jun 2009 11:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/#comment-2512</guid>
		<description>Generics are not .net 1.1</description>
		<content:encoded><![CDATA[<p>Generics are not .net 1.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: liviu</title>
		<link>http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/comment-page-1/#comment-2510</link>
		<dc:creator>liviu</dc:creator>
		<pubDate>Fri, 12 Jun 2009 18:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/#comment-2510</guid>
		<description>Hi, I bet that if you use a HashSet it will be a little better...
Don&#039;t be stuck in .net 1.1 structures :)</description>
		<content:encoded><![CDATA[<p>Hi, I bet that if you use a HashSet it will be a little better&#8230;<br />
Don&#8217;t be stuck in .net 1.1 structures <img src='http://www.codewrecks.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alkampfer</title>
		<link>http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/comment-page-1/#comment-2508</link>
		<dc:creator>alkampfer</dc:creator>
		<pubDate>Fri, 12 Jun 2009 16:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/#comment-2508</guid>
		<description>You are right, I&#039;m so used to Array.BinarySearch because quite often I work with NHibernate that returns me an IList&lt;T&gt; that have not BinarySearch. Now Even when I use the List&lt;T&gt; I forget that the List&lt;T&gt; have binarySearch implemented.

Thanks for pointing it out. :)

Alk.</description>
		<content:encoded><![CDATA[<p>You are right, I&#8217;m so used to Array.BinarySearch because quite often I work with NHibernate that returns me an IList<t> that have not BinarySearch. Now Even when I use the List</t><t> I forget that the List</t><t> have binarySearch implemented.</p>
<p>Thanks for pointing it out. <img src='http://www.codewrecks.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Alk.</t></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wekempf</title>
		<link>http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/comment-page-1/#comment-2507</link>
		<dc:creator>wekempf</dc:creator>
		<pubDate>Fri, 12 Jun 2009 15:31:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2009/06/11/do-not-forget-array/#comment-2507</guid>
		<description>You don&#039;t need to use an array to do a binary search, because List has BinarySearch methods as well.  http://msdn.microsoft.com/en-us/library/w4e7fxsh.aspx</description>
		<content:encoded><![CDATA[<p>You don&#8217;t need to use an array to do a binary search, because List has BinarySearch methods as well.  <a href="http://msdn.microsoft.com/en-us/library/w4e7fxsh.aspx" rel="nofollow">http://msdn.microsoft.com/en-u.....7fxsh.aspx</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

