<?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: Stretching Lambda&#8217;s Legs: Single Statement String Concatenation</title>
	<atom:link href="http://goneale.com/2009/05/28/stretching-lambdas-legs-single-statement-string-concatenation/feed/" rel="self" type="application/rss+xml" />
	<link>http://goneale.com/2009/05/28/stretching-lambdas-legs-single-statement-string-concatenation/</link>
	<description>Graham O&#039;Neale – Deep In .NET Development: ASP.NET, MVC, jQuery, WPF, WCF, Silverlight</description>
	<lastBuildDate>Wed, 10 Mar 2010 13:27:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Luke</title>
		<link>http://goneale.com/2009/05/28/stretching-lambdas-legs-single-statement-string-concatenation/comment-page-1/#comment-200</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Fri, 29 May 2009 21:51:03 +0000</pubDate>
		<guid isPermaLink="false">http://goneale.wordpress.com/?p=641#comment-200</guid>
		<description>Not sure why you&#039;re avoiding string.Join(). This seems way easier:
string songTitles = string.Join(&quot;,&quot;, titles.Select(x =&gt; t.Item.Name).ToArray());</description>
		<content:encoded><![CDATA[<p>Not sure why you&#8217;re avoiding string.Join(). This seems way easier:<br />
string songTitles = string.Join(&#8220;,&#8221;, titles.Select(x =&gt; t.Item.Name).ToArray());</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham O&#039;Neale</title>
		<link>http://goneale.com/2009/05/28/stretching-lambdas-legs-single-statement-string-concatenation/comment-page-1/#comment-203</link>
		<dc:creator>Graham O&#039;Neale</dc:creator>
		<pubDate>Thu, 28 May 2009 23:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://goneale.wordpress.com/?p=641#comment-203</guid>
		<description>Are you serious??

Blast! There&#039;s always another method you just didn&#039;t realise.. :)

This just shows that everyone should read back to front on all the extension methods, including myself. My friend even did a good post on it &lt;a href=&quot;http://www.bleevo.com/2009/02/system-linq-enumerable-aggregate-better-know-an-extension-method-part-1/&quot; rel=&quot;nofollow&quot;&gt;http://www.bleevo.com/2009/02/system-linq-enumerable-aggregate-better-know-an-extension-method-part-1/&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Are you serious??</p>
<p>Blast! There&#8217;s always another method you just didn&#8217;t realise.. <img src='http://goneale.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This just shows that everyone should read back to front on all the extension methods, including myself. My friend even did a good post on it <a href="http://www.bleevo.com/2009/02/system-linq-enumerable-aggregate-better-know-an-extension-method-part-1/" rel="nofollow">http://www.bleevo.com/2009/02/system-linq-enumerable-aggregate-better-know-an-extension-method-part-1/</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://goneale.com/2009/05/28/stretching-lambdas-legs-single-statement-string-concatenation/comment-page-1/#comment-202</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 28 May 2009 23:07:03 +0000</pubDate>
		<guid isPermaLink="false">http://goneale.wordpress.com/?p=641#comment-202</guid>
		<description>Or you could use Aggregate ;)

string songtitles=titles.Select(s=&gt;s.Name).Aggregate((a, b) =&gt; a + &quot;,&quot; + b);</description>
		<content:encoded><![CDATA[<p>Or you could use Aggregate <img src='http://goneale.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>string songtitles=titles.Select(s=&gt;s.Name).Aggregate((a, b) =&gt; a + &#8220;,&#8221; + b);</p>
]]></content:encoded>
	</item>
</channel>
</rss>
