<?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: How to Use a Generic List in C#</title>
	<atom:link href="http://www.victorchen.info/how-to-use-a-generic-list-in-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.victorchen.info/how-to-use-a-generic-list-in-c/</link>
	<description>An array of C#, PHP, and HTML programming articles, tutorials, and resources</description>
	<lastBuildDate>Tue, 02 Mar 2010 21:03:18 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andre</title>
		<link>http://www.victorchen.info/how-to-use-a-generic-list-in-c/comment-page-1/#comment-16843</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Mon, 18 Jan 2010 07:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorchen.info/?p=117#comment-16843</guid>
		<description>List of types of objects cannot be made in C# (maybe in the futur..) but here is the code for one in C++.

template 
struct Type_list 
{
  typedef H head;
  typedef T tail;
}
ex:

Type_list &lt;int,Type_list&lt;Tractor,Type_list&gt;&gt;::my_list;</description>
		<content:encoded><![CDATA[<p>List of types of objects cannot be made in C# (maybe in the futur..) but here is the code for one in C++.</p>
<p>template<br />
struct Type_list<br />
{<br />
  typedef H head;<br />
  typedef T tail;<br />
}<br />
ex:</p>
<p>Type_list &lt;int,Type_list&lt;Tractor,Type_list&gt;&gt;::my_list;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant Khandelwal</title>
		<link>http://www.victorchen.info/how-to-use-a-generic-list-in-c/comment-page-1/#comment-16520</link>
		<dc:creator>Prashant Khandelwal</dc:creator>
		<pubDate>Sun, 20 Sep 2009 15:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorchen.info/?p=117#comment-16520</guid>
		<description>Was quite helpful,could have elaborated more!</description>
		<content:encoded><![CDATA[<p>Was quite helpful,could have elaborated more!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hamed</title>
		<link>http://www.victorchen.info/how-to-use-a-generic-list-in-c/comment-page-1/#comment-16352</link>
		<dc:creator>Hamed</dc:creator>
		<pubDate>Fri, 17 Jul 2009 15:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorchen.info/?p=117#comment-16352</guid>
		<description>To edward :
make a struct of different types of objects.then make a collection of that struct.
to work easily with it make a list of that collection.</description>
		<content:encoded><![CDATA[<p>To edward :<br />
make a struct of different types of objects.then make a collection of that struct.<br />
to work easily with it make a list of that collection.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: edward</title>
		<link>http://www.victorchen.info/how-to-use-a-generic-list-in-c/comment-page-1/#comment-16266</link>
		<dc:creator>edward</dc:creator>
		<pubDate>Thu, 28 May 2009 14:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorchen.info/?p=117#comment-16266</guid>
		<description>OK but how do you make a collections of different types of objects?</description>
		<content:encoded><![CDATA[<p>OK but how do you make a collections of different types of objects?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mudit Chaturvedi</title>
		<link>http://www.victorchen.info/how-to-use-a-generic-list-in-c/comment-page-1/#comment-16080</link>
		<dc:creator>Mudit Chaturvedi</dc:creator>
		<pubDate>Tue, 10 Mar 2009 12:01:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorchen.info/?p=117#comment-16080</guid>
		<description>Was quite helpful</description>
		<content:encoded><![CDATA[<p>Was quite helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victor Chen</title>
		<link>http://www.victorchen.info/how-to-use-a-generic-list-in-c/comment-page-1/#comment-4748</link>
		<dc:creator>Victor Chen</dc:creator>
		<pubDate>Tue, 30 Sep 2008 01:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorchen.info/?p=117#comment-4748</guid>
		<description>Khalid, great point on pointing out that List.Average() is a extension method. I&#039;ve updated the article!</description>
		<content:encoded><![CDATA[<p>Khalid, great point on pointing out that List.Average() is a extension method. I&#8217;ve updated the article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khalid</title>
		<link>http://www.victorchen.info/how-to-use-a-generic-list-in-c/comment-page-1/#comment-4744</link>
		<dc:creator>Khalid</dc:creator>
		<pubDate>Mon, 29 Sep 2008 18:11:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorchen.info/?p=117#comment-4744</guid>
		<description>Yeah I use generics a lot, but I find myself using Interfaces instead of strongly typed Lists. So I use IList instead of List. Also you should point out that the List.Average() is an extension method and not an actual method on the data structure.</description>
		<content:encoded><![CDATA[<p>Yeah I use generics a lot, but I find myself using Interfaces instead of strongly typed Lists. So I use IList instead of List. Also you should point out that the List.Average() is an extension method and not an actual method on the data structure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Calculate Average of Double Variables in C#</title>
		<link>http://www.victorchen.info/how-to-use-a-generic-list-in-c/comment-page-1/#comment-4707</link>
		<dc:creator>Calculate Average of Double Variables in C#</dc:creator>
		<pubDate>Tue, 16 Sep 2008 14:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.victorchen.info/?p=117#comment-4707</guid>
		<description>[...] of values. In this average example, we will assume the List consists of doubles (by means of a Generic List). For this to workOur Generic List is defined [...]</description>
		<content:encoded><![CDATA[<p>[...] of values. In this average example, we will assume the List consists of doubles (by means of a Generic List). For this to workOur Generic List is defined [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
