<?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: Extension Methods in .NET 3</title>
	<atom:link href="http://antecknat.se/blog/2008/09/09/extension-method-in-net-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://antecknat.se/blog/2008/09/09/extension-method-in-net-3/</link>
	<description>A blog about understanding and extending EPiServer</description>
	<lastBuildDate>Thu, 02 Sep 2010 07:37:26 +0200</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Erik Nordin</title>
		<link>http://antecknat.se/blog/2008/09/09/extension-method-in-net-3/comment-page-1/#comment-578</link>
		<dc:creator>Erik Nordin</dc:creator>
		<pubDate>Fri, 26 Sep 2008 12:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://antecknat.se/blog/?p=34#comment-578</guid>
		<description>Yes, I love it!

Another nice one is
public static PageData GetPageData(this PageReference pr)
{
return DataFactory.Instance.GetPage(pr);
}</description>
		<content:encoded><![CDATA[<p>Yes, I love it!</p>
<p>Another nice one is<br />
public static PageData GetPageData(this PageReference pr)<br />
{<br />
return DataFactory.Instance.GetPage(pr);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan</title>
		<link>http://antecknat.se/blog/2008/09/09/extension-method-in-net-3/comment-page-1/#comment-577</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Fri, 26 Sep 2008 12:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://antecknat.se/blog/?p=34#comment-577</guid>
		<description>Extensions makes things simple, especially EPiServer development. Even something as common as

[code]
        public static PageData GetParent(this PageData pd)
        {
            return DataFactory.Instance.GetPage(pd.ParentLink);
        }
[/code]

saves a lot of time.</description>
		<content:encoded><![CDATA[<p>Extensions makes things simple, especially EPiServer development. Even something as common as</p>
<p>[code]<br />
        public static PageData GetParent(this PageData pd)<br />
        {<br />
            return DataFactory.Instance.GetPage(pd.ParentLink);<br />
        }<br />
[/code]</p>
<p>saves a lot of time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
