<?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: Generate a CSV from a generic list of objects using reflection and extension methods</title>
	<atom:link href="http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/</link>
	<description>Everything .NET and C#</description>
	<lastBuildDate>Wed, 01 Feb 2012 21:25:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: Joe</title>
		<link>http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/comment-page-1/#comment-20843</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Tue, 31 May 2011 22:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.joe-stevens.com/?p=191#comment-20843</guid>
		<description>Glad it helped Grant

Cheers
Joe</description>
		<content:encoded><![CDATA[<p>Glad it helped Grant</p>
<p>Cheers<br />
Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grant</title>
		<link>http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/comment-page-1/#comment-20841</link>
		<dc:creator>Grant</dc:creator>
		<pubDate>Tue, 31 May 2011 14:36:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.joe-stevens.com/?p=191#comment-20841</guid>
		<description>Thanks Joe. We&#039;ve had an old procedure for exporting datatables to csv for some time, but we&#039;re moving to lists of strongly-typed objects so I needed a new procedure... this works great!</description>
		<content:encoded><![CDATA[<p>Thanks Joe. We&#8217;ve had an old procedure for exporting datatables to csv for some time, but we&#8217;re moving to lists of strongly-typed objects so I needed a new procedure&#8230; this works great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/comment-page-1/#comment-1334</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Sat, 27 Mar 2010 01:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.joe-stevens.com/?p=191#comment-1334</guid>
		<description>Great work!  Thanks for sharing.</description>
		<content:encoded><![CDATA[<p>Great work!  Thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daoming</title>
		<link>http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/comment-page-1/#comment-1271</link>
		<dc:creator>daoming</dc:creator>
		<pubDate>Tue, 16 Mar 2010 20:22:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.joe-stevens.com/?p=191#comment-1271</guid>
		<description>great post, you have saved my days.

many thanks.</description>
		<content:encoded><![CDATA[<p>great post, you have saved my days.</p>
<p>many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/comment-page-1/#comment-1156</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Thu, 25 Feb 2010 13:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.joe-stevens.com/?p=191#comment-1156</guid>
		<description>Thanks Joe. Great concept - simple &amp; effective. Just what I was looking for.</description>
		<content:encoded><![CDATA[<p>Thanks Joe. Great concept &#8211; simple &amp; effective. Just what I was looking for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shay Jacoby</title>
		<link>http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/comment-page-1/#comment-667</link>
		<dc:creator>Shay Jacoby</dc:creator>
		<pubDate>Fri, 18 Dec 2009 12:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.joe-stevens.com/?p=191#comment-667</guid>
		<description>Hi. thanks, very good and useful code.
I did 2 changes:
1. Changed List arg type to IList
2. Converted ExportCSV to extension like:
public static void AsCSVResponse(this string csv, string filename)
        {...}
Thx ext. does the same work but now I call CSV EXport like:
 GetCSV(list).AsCSVResponse(filename);

and from client:
myList.ExportCSV(&quot;myCSV&quot;);</description>
		<content:encoded><![CDATA[<p>Hi. thanks, very good and useful code.<br />
I did 2 changes:<br />
1. Changed List arg type to IList<br />
2. Converted ExportCSV to extension like:<br />
public static void AsCSVResponse(this string csv, string filename)<br />
        {&#8230;}<br />
Thx ext. does the same work but now I call CSV EXport like:<br />
 GetCSV(list).AsCSVResponse(filename);</p>
<p>and from client:<br />
myList.ExportCSV(&#8220;myCSV&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/comment-page-1/#comment-650</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sat, 12 Dec 2009 21:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.joe-stevens.com/?p=191#comment-650</guid>
		<description>Hi Tal

The code in this post should work fine in a console app.

Joe</description>
		<content:encoded><![CDATA[<p>Hi Tal</p>
<p>The code in this post should work fine in a console app.</p>
<p>Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tal</title>
		<link>http://www.joe-stevens.com/2009/08/03/generate-a-csv-from-a-generic-list-of-objects-using-reflection-and-extension-methods/comment-page-1/#comment-646</link>
		<dc:creator>Tal</dc:creator>
		<pubDate>Fri, 11 Dec 2009 08:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.joe-stevens.com/?p=191#comment-646</guid>
		<description>Hi,
Where can I find example of Export List to CSV in C# for Console Application?
Thanks,
Tal</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Where can I find example of Export List to CSV in C# for Console Application?<br />
Thanks,<br />
Tal</p>
]]></content:encoded>
	</item>
</channel>
</rss>

