<?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: Flyweight Pattern</title>
	<atom:link href="http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/feed/" rel="self" type="application/rss+xml" />
	<link>http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/</link>
	<description>Christophe Geers&#039; Blog about .NET programming</description>
	<lastBuildDate>Tue, 15 Dec 2009 17:57:31 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Richard</title>
		<link>http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/#comment-187</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Tue, 28 Apr 2009 14:41:43 +0000</pubDate>
		<guid isPermaLink="false">http://cgeers.wordpress.com/?p=17#comment-187</guid>
		<description>I know it has been a while since you first wrote this article but I recently came across it. This is one of the best design patterns articles I have read, any chance that you can finish the series. I only found the Flyweight and Strategy articles.</description>
		<content:encoded><![CDATA[<p>I know it has been a while since you first wrote this article but I recently came across it. This is one of the best design patterns articles I have read, any chance that you can finish the series. I only found the Flyweight and Strategy articles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christophe</title>
		<link>http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/#comment-47</link>
		<dc:creator>Christophe</dc:creator>
		<pubDate>Sun, 06 Apr 2008 06:35:34 +0000</pubDate>
		<guid isPermaLink="false">http://cgeers.wordpress.com/?p=17#comment-47</guid>
		<description>Could be, but that&#039;s all included in the example code. However I updated the article, the console demo application now contains the needed references. Thanks.</description>
		<content:encoded><![CDATA[<p>Could be, but that&#8217;s all included in the example code. However I updated the article, the console demo application now contains the needed references. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrea Gr</title>
		<link>http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/#comment-46</link>
		<dc:creator>Andrea Gr</dc:creator>
		<pubDate>Thu, 03 Apr 2008 04:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://cgeers.wordpress.com/?p=17#comment-46</guid>
		<description>He may be talking about the lack of an assembly reference in the static void main() of the console application, I guess the compiler would  complain about DigitFactory and SudokuGrid...</description>
		<content:encoded><![CDATA[<p>He may be talking about the lack of an assembly reference in the static void main() of the console application, I guess the compiler would  complain about DigitFactory and SudokuGrid&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christophe</title>
		<link>http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/#comment-44</link>
		<dc:creator>Christophe</dc:creator>
		<pubDate>Mon, 10 Mar 2008 08:55:18 +0000</pubDate>
		<guid isPermaLink="false">http://cgeers.wordpress.com/?p=17#comment-44</guid>
		<description>Hi, can you point out the issues you see? I ran the code through Code Analysis and solved every issue it reported.</description>
		<content:encoded><![CDATA[<p>Hi, can you point out the issues you see? I ran the code through Code Analysis and solved every issue it reported.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmitri</title>
		<link>http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/#comment-43</link>
		<dc:creator>Dmitri</dc:creator>
		<pubDate>Mon, 10 Mar 2008 08:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://cgeers.wordpress.com/?p=17#comment-43</guid>
		<description>Very interesting, though I imagine FxCop would find a couple of issues with this code : )</description>
		<content:encoded><![CDATA[<p>Very interesting, though I imagine FxCop would find a couple of issues with this code : )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christophe</title>
		<link>http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/#comment-39</link>
		<dc:creator>Christophe</dc:creator>
		<pubDate>Sat, 08 Mar 2008 16:54:55 +0000</pubDate>
		<guid isPermaLink="false">http://cgeers.wordpress.com/?p=17#comment-39</guid>
		<description>Thx. Hrm, Dependency properties...I&#039;ll have a go at it next week. If it works out I&#039;ll post an update to this article.</description>
		<content:encoded><![CDATA[<p>Thx. Hrm, Dependency properties&#8230;I&#8217;ll have a go at it next week. If it works out I&#8217;ll post an update to this article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Example of the Flyweight design pattern &#171; Written materials</title>
		<link>http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/#comment-38</link>
		<dc:creator>Example of the Flyweight design pattern &#171; Written materials</dc:creator>
		<pubDate>Sat, 08 Mar 2008 16:54:21 +0000</pubDate>
		<guid isPermaLink="false">http://cgeers.wordpress.com/?p=17#comment-38</guid>
		<description>[...] Posted by Marc Vangrieken on March 8, 2008  One of the OOADug members, Christophe Geers wrote a nice article about the Flyweight pattern, maybe one of the least widely known GoF design patterns. In this C# example a Sudoku game is written using Flyweight, hereby sharing the digits on the board as much as possible. You can read it here&#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Posted by Marc Vangrieken on March 8, 2008  One of the OOADug members, Christophe Geers wrote a nice article about the Flyweight pattern, maybe one of the least widely known GoF design patterns. In this C# example a Sudoku game is written using Flyweight, hereby sharing the digits on the board as much as possible. You can read it here&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Vangrieken</title>
		<link>http://cgeers.wordpress.com/2008/03/08/flyweight-pattern/#comment-36</link>
		<dc:creator>Marc Vangrieken</dc:creator>
		<pubDate>Sat, 08 Mar 2008 16:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://cgeers.wordpress.com/?p=17#comment-36</guid>
		<description>Christophe, great example, you really have knack for writing about these kind of things !

ps. How do you think C# dependency properties would fit in? Could they replace the factory in this case? I think so but i&#039;m not sure...</description>
		<content:encoded><![CDATA[<p>Christophe, great example, you really have knack for writing about these kind of things !</p>
<p>ps. How do you think C# dependency properties would fit in? Could they replace the factory in this case? I think so but i&#8217;m not sure&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
