<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: C# reminder of the day</title>
	<atom:link href="http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/feed/" rel="self" type="application/rss+xml" />
	<link>http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 06 Aug 2009 13:21:45 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kirill Osenkov</title>
		<link>http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-101</link>
		<dc:creator>Kirill Osenkov</dc:creator>
		<pubDate>Fri, 25 Jul 2008 07:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-101</guid>
		<description>Yeah, it enables fun stuff like this:

http://www.codeplex.com/DynamicGeometry/SourceControl/FileView.aspx?itemId=154936&amp;changeSetId=12000</description>
		<content:encoded><![CDATA[<p>Yeah, it enables fun stuff like this:</p>
<p><a href="http://www.codeplex.com/DynamicGeometry/SourceControl/FileView.aspx?itemId=154936&amp;changeSetId=12000" rel="nofollow">http://www.codeplex.com/DynamicGeometry/SourceControl/FileView.aspx?itemId=154936&amp;changeSetId=12000</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob</title>
		<link>http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-97</link>
		<dc:creator>Jacob</dc:creator>
		<pubDate>Tue, 22 Jul 2008 15:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-97</guid>
		<description>Yeah; it totally makes sense why it&#039;s the case. (Consider a static field of type &lt;code&gt;T&lt;/code&gt;... that couldn&#039;t possibly be shared among constructed types.) I just had sort of forgotten that it &lt;em&gt;was&lt;/em&gt; the case. :)</description>
		<content:encoded><![CDATA[<p>Yeah; it totally makes sense why it&#8217;s the case. (Consider a static field of type <code>T</code>&#8230; that couldn&#8217;t possibly be shared among constructed types.) I just had sort of forgotten that it <em>was</em> the case. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustin Campbell</title>
		<link>http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-96</link>
		<dc:creator>Dustin Campbell</dc:creator>
		<pubDate>Tue, 22 Jul 2008 14:30:09 +0000</pubDate>
		<guid isPermaLink="false">http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-96</guid>
		<description>This is actually a great feature. It&#039;s the reason why EqualityComparer.Default works.</description>
		<content:encoded><![CDATA[<p>This is actually a great feature. It&#8217;s the reason why EqualityComparer.Default works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-95</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 22 Jul 2008 01:15:59 +0000</pubDate>
		<guid isPermaLink="false">http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-95</guid>
		<description>oops, i meant to include the generic int type argument

Generic&lt;int&gt;.PrintCount(); // &quot;Called 1 time.&quot;
Generic&lt;int&gt;.PrintCount(); // &quot;Called 2 time.&quot;</description>
		<content:encoded><![CDATA[<p>oops, i meant to include the generic int type argument</p>
<p>Generic&lt;int&gt;.PrintCount(); // &#8220;Called 1 time.&#8221;<br />
Generic&lt;int&gt;.PrintCount(); // &#8220;Called 2 time.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-94</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 22 Jul 2008 01:14:32 +0000</pubDate>
		<guid isPermaLink="false">http://jacobcarpenter.wordpress.com/2008/07/21/c-reminder-of-the-day/#comment-94</guid>
		<description>The statement &quot;Static data is not shared among constructed generic types.&quot; is incomplete. It should read something like &quot;Static data is not shared amongst instances of unique constructed generic types.&quot; since the following is true

  Generic.PrintCount(); // &quot;Called 1 time.&quot;
  Generic.PrintCount(); // &quot;Called 2 time.&quot;</description>
		<content:encoded><![CDATA[<p>The statement &#8220;Static data is not shared among constructed generic types.&#8221; is incomplete. It should read something like &#8220;Static data is not shared amongst instances of unique constructed generic types.&#8221; since the following is true</p>
<p>  Generic.PrintCount(); // &#8220;Called 1 time.&#8221;<br />
  Generic.PrintCount(); // &#8220;Called 2 time.&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
