<?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: Best C# Blogs</title>
	<atom:link href="http://www.csharp411.com/best-c-blogs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharp411.com/best-c-blogs/</link>
	<description>C# Information, Code, Tips and News</description>
	<lastBuildDate>Thu, 09 Sep 2010 19:15:17 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: RSusanto</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-5594</link>
		<dc:creator>RSusanto</dc:creator>
		<pubDate>Tue, 20 Jul 2010 11:13:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-5594</guid>
		<description>Check out my blog too :)</description>
		<content:encoded><![CDATA[<p>Check out my blog too <img src='http://www.csharp411.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nella</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-5477</link>
		<dc:creator>nella</dc:creator>
		<pubDate>Mon, 10 May 2010 16:57:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-5477</guid>
		<description>plese help me how to make console project C# about &quot;Hashing&quot; Closed / Chained Addressing (use array not linked list)
please...please...</description>
		<content:encoded><![CDATA[<p>plese help me how to make console project C# about "Hashing" Closed / Chained Addressing (use array not linked list)<br />
please&#8230;please&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yesaya</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-5476</link>
		<dc:creator>yesaya</dc:creator>
		<pubDate>Mon, 10 May 2010 16:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-5476</guid>
		<description>{
        CommissionedEmployee[] salespeople =
                {new CommissionedEmployee(&quot;Bob&quot;),
                 new CommissionedEmployee(&quot;Ted&quot;),
                 new CommissionedEmployee(&quot;Sally&quot;)};

        Employee[] employees =
            (Employee[])salespeople.Clone();

        foreach (Employee person in
                employees) {
            person.Pay();
        }
    }
}

public class Employee {
    public Employee(string name) {
        m_Name = name;
    }

    public virtual void Pay() {
        Console.WriteLine(&quot;Paying {0}&quot;, m_Name);
    }

    private string m_Name;
}

public class CommissionedEmployee : Employee {
    public CommissionedEmployee(string name) :
        base(name) {
    }

    public override void Pay() {
        base.Pay();
        Console.WriteLine(&quot;Paying commissions&quot;);</description>
		<content:encoded><![CDATA[<p>{<br />
        CommissionedEmployee[] salespeople =<br />
                {new CommissionedEmployee("Bob"),<br />
                 new CommissionedEmployee("Ted"),<br />
                 new CommissionedEmployee("Sally")};</p>
<p>        Employee[] employees =<br />
            (Employee[])salespeople.Clone();</p>
<p>        foreach (Employee person in<br />
                employees) {<br />
            person.Pay();<br />
        }<br />
    }<br />
}</p>
<p>public class Employee {<br />
    public Employee(string name) {<br />
        m_Name = name;<br />
    }</p>
<p>    public virtual void Pay() {<br />
        Console.WriteLine("Paying {0}", m_Name);<br />
    }</p>
<p>    private string m_Name;<br />
}</p>
<p>public class CommissionedEmployee : Employee {<br />
    public CommissionedEmployee(string name) :<br />
        base(name) {<br />
    }</p>
<p>    public override void Pay() {<br />
        base.Pay();<br />
        Console.WriteLine("Paying commissions");</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Farooq Azam</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-5405</link>
		<dc:creator>Farooq Azam</dc:creator>
		<pubDate>Wed, 17 Mar 2010 09:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-5405</guid>
		<description>Excellent collection of blogs for C# developers.</description>
		<content:encoded><![CDATA[<p>Excellent collection of blogs for C# developers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr. Dobbs Journal is Dead</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-5328</link>
		<dc:creator>Dr. Dobbs Journal is Dead</dc:creator>
		<pubDate>Fri, 13 Nov 2009 00:20:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-5328</guid>
		<description>[...] advance in their careers.  So naturally .NET programmers will gravitate toward .NET magazines and websites, etc.  And so a generalist magazine like Dr. Dobbs will have little use in our daily work [...]</description>
		<content:encoded><![CDATA[<p>[...] advance in their careers.  So naturally .NET programmers will gravitate toward .NET magazines and websites, etc.  And so a generalist magazine like Dr. Dobbs will have little use in our daily work [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andi</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-5270</link>
		<dc:creator>Andi</dc:creator>
		<pubDate>Fri, 04 Sep 2009 18:21:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-5270</guid>
		<description>Wow....nice Collection ;)</description>
		<content:encoded><![CDATA[<p>Wow&#8230;.nice Collection <img src='http://www.csharp411.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: loldemar</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-4867</link>
		<dc:creator>loldemar</dc:creator>
		<pubDate>Tue, 26 May 2009 12:42:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-4867</guid>
		<description>Very good summary, I found a couple of new blogs I haven&#039;t read :)</description>
		<content:encoded><![CDATA[<p>Very good summary, I found a couple of new blogs I haven't read <img src='http://www.csharp411.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nasty</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-4546</link>
		<dc:creator>nasty</dc:creator>
		<pubDate>Wed, 22 Apr 2009 14:48:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-4546</guid>
		<description>Great, I love it</description>
		<content:encoded><![CDATA[<p>Great, I love it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: balu</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-4518</link>
		<dc:creator>balu</dc:creator>
		<pubDate>Mon, 30 Mar 2009 11:03:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-4518</guid>
		<description>good</description>
		<content:encoded><![CDATA[<p>good</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: El Cabeza</title>
		<link>http://www.csharp411.com/best-c-blogs/comment-page-1/#comment-4349</link>
		<dc:creator>El Cabeza</dc:creator>
		<pubDate>Sat, 14 Mar 2009 04:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/best-c-blogs/#comment-4349</guid>
		<description>Check out my new blog ;-)</description>
		<content:encoded><![CDATA[<p>Check out my new blog <img src='http://www.csharp411.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
