<?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: Using LINQ to Convert an Array Into a Generic List with C#</title>
	<atom:link href="http://peterkellner.net/2009/10/14/linq-convert-array-to-list/feed/" rel="self" type="application/rss+xml" />
	<link>http://peterkellner.net/2009/10/14/linq-convert-array-to-list/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=linq-convert-array-to-list</link>
	<description>Microsoft Focused, JavaScript,HTML5 (ExtJS, SenchaTouch &#38; Windows 8 Metro)</description>
	<lastBuildDate>Tue, 15 May 2012 21:53:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Gicu Pruneanu</title>
		<link>http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-27777</link>
		<dc:creator>Gicu Pruneanu</dc:creator>
		<pubDate>Thu, 08 Jul 2010 12:59:45 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-27777</guid>
		<description>Hi Peter,

I was wondering to know which collection of objects performs better? cmRateResult[] or List?

Thanks,
Gicu</description>
		<content:encoded><![CDATA[<p>Hi Peter,</p>
<p>I was wondering to know which collection of objects performs better? cmRateResult[] or List?</p>
<p>Thanks,<br />
Gicu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: simi</title>
		<link>http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25975</link>
		<dc:creator>simi</dc:creator>
		<pubDate>Wed, 30 Dec 2009 06:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25975</guid>
		<description>hi,

First of all. Thanks very much for your useful post.

I just came across your blog and wanted to drop you a note telling you how impressed I was with the information you have posted here.

Please let me introduce you some info related to this post and I hope that it is useful for .Net community.

There is a good C# resource site, Have alook
 
http://csharptalk.com

simi</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>First of all. Thanks very much for your useful post.</p>
<p>I just came across your blog and wanted to drop you a note telling you how impressed I was with the information you have posted here.</p>
<p>Please let me introduce you some info related to this post and I hope that it is useful for .Net community.</p>
<p>There is a good C# resource site, Have alook</p>
<p><a href="http://csharptalk.com">http://csharptalk.com</a></p>
<p>simi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pau</title>
		<link>http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25464</link>
		<dc:creator>Pau</dc:creator>
		<pubDate>Fri, 16 Oct 2009 13:12:18 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25464</guid>
		<description>Erm, yeah that should have come out as:
List&lt;cmRateResult&gt; recs = new List&lt;cmRateResult&gt;(cmRateResults);</description>
		<content:encoded><![CDATA[<p>Erm, yeah that should have come out as:<br />
List&lt;cmRateResult&gt; recs = new List&lt;cmRateResult&gt;(cmRateResults);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pau</title>
		<link>http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25463</link>
		<dc:creator>Pau</dc:creator>
		<pubDate>Fri, 16 Oct 2009 13:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25463</guid>
		<description>Or you could just do:
List recs = new List(cmRateResults);

Not sure if it&#039;s any less performant than the .ToList(), but it&#039;s 100% more readable than the Linq version.</description>
		<content:encoded><![CDATA[<p>Or you could just do:<br />
List recs = new List(cmRateResults);</p>
<p>Not sure if it&#8217;s any less performant than the .ToList(), but it&#8217;s 100% more readable than the Linq version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25459</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Thu, 15 Oct 2009 03:52:32 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25459</guid>
		<description>Artem,
I think I may just be link happy :)</description>
		<content:encoded><![CDATA[<p>Artem,<br />
I think I may just be link happy <img src='http://PetersBlogCDN.s3.amazonaws.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Artem Govorov</title>
		<link>http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25458</link>
		<dc:creator>Artem Govorov</dc:creator>
		<pubDate>Thu, 15 Oct 2009 02:39:25 +0000</pubDate>
		<guid isPermaLink="false">http://peterkellner.net/2009/10/14/linq-convert-array-to-list/#comment-25458</guid>
		<description>Not sure why you even need Select, this would work for you: cmRateResults.ToList()</description>
		<content:encoded><![CDATA[<p>Not sure why you even need Select, this would work for you: cmRateResults.ToList()</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 39/41 queries in 0.010 seconds using disk: basic
Content Delivery Network via Amazon Web Services: S3: PetersBlogCDN.s3.amazonaws.com

Served from: peterkellner.net @ 2012-05-21 11:35:40 -->
