<?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: A programming language pattern idea.</title>
	<atom:link href="http://boris.kirzner.info/blog/archives/2005/07/21/a-programming-language-pattern-idea/feed/" rel="self" type="application/rss+xml" />
	<link>http://boris.kirzner.info/blog/archives/2005/07/21/a-programming-language-pattern-idea/</link>
	<description>Only empty files are bugless</description>
	<lastBuildDate>Wed, 21 Dec 2011 15:04:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: Boris Kirzner</title>
		<link>http://boris.kirzner.info/blog/archives/2005/07/21/a-programming-language-pattern-idea/comment-page-1/#comment-9</link>
		<dc:creator>Boris Kirzner</dc:creator>
		<pubDate>Thu, 24 Aug 2006 12:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://kbh.co.il/wordpress/?p=12#comment-9</guid>
		<description>You&#039;re right, _myPropertyContainer should be declared inside the class but outside the property. Fixed, thanks.

The rest of the code spippets can not be compiled just because this feature does not exist in the language (I hope it does&#039;nt exist yet).</description>
		<content:encoded><![CDATA[<p>You&#8217;re right, _myPropertyContainer should be declared inside the class but outside the property. Fixed, thanks.</p>
<p>The rest of the code spippets can not be compiled just because this feature does not exist in the language (I hope it does&#8217;nt exist yet).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anonymono</title>
		<link>http://boris.kirzner.info/blog/archives/2005/07/21/a-programming-language-pattern-idea/comment-page-1/#comment-8</link>
		<dc:creator>anonymono</dc:creator>
		<pubDate>Tue, 22 Aug 2006 08:11:21 +0000</pubDate>
		<guid isPermaLink="false">http://kbh.co.il/wordpress/?p=12#comment-8</guid>
		<description>Sorry but I don&#039;t understand this post at all.

Firstly, this code doesn&#039;t compile:

public class ClassA {
    public string MyProperty {
        private string _myPropertyContainer;
        get {
            return _myPropertyContainer;
        }
        set {
            doSomething1();
            _myPropertyContainer = value;
        }
    }
}

Because in a property you can only have get/set (or add/remove in events) code blocks.

And the rest code snippets don&#039;t compile too, because you&#039;re not declaring container variable :?</description>
		<content:encoded><![CDATA[<p>Sorry but I don&#8217;t understand this post at all.</p>
<p>Firstly, this code doesn&#8217;t compile:</p>
<p>public class ClassA {<br />
    public string MyProperty {<br />
        private string _myPropertyContainer;<br />
        get {<br />
            return _myPropertyContainer;<br />
        }<br />
        set {<br />
            doSomething1();<br />
            _myPropertyContainer = value;<br />
        }<br />
    }<br />
}</p>
<p>Because in a property you can only have get/set (or add/remove in events) code blocks.</p>
<p>And the rest code snippets don&#8217;t compile too, because you&#8217;re not declaring container variable <img src='http://boris.kirzner.info/blog/wp-includes/images/smilies/icon_confused.gif' alt=':?' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

