<?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: Implementing INotifyPropertyChanged with F#</title>
	<atom:link href="http://www.voyce.com/index.php/2009/03/02/implementing-inotifypropertychanged-with-fsharp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.voyce.com/index.php/2009/03/02/implementing-inotifypropertychanged-with-fsharp/</link>
	<description>Programming and debugging tidbits</description>
	<lastBuildDate>Wed, 04 Jan 2012 23:07:52 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: voyce</title>
		<link>http://www.voyce.com/index.php/2009/03/02/implementing-inotifypropertychanged-with-fsharp/comment-page-1/#comment-460</link>
		<dc:creator>voyce</dc:creator>
		<pubDate>Mon, 06 Jul 2009 08:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.voyce.com/?p=90#comment-460</guid>
		<description>Thanks Rei! I&#039;ve updated the post to mention the new attribute (and change the code to use type inference for the event type).

Ian</description>
		<content:encoded><![CDATA[<p>Thanks Rei! I&#8217;ve updated the post to mention the new attribute (and change the code to use type inference for the event type).</p>
<p>Ian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rei</title>
		<link>http://www.voyce.com/index.php/2009/03/02/implementing-inotifypropertychanged-with-fsharp/comment-page-1/#comment-459</link>
		<dc:creator>rei</dc:creator>
		<pubDate>Mon, 06 Jul 2009 04:38:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.voyce.com/?p=90#comment-459</guid>
		<description>Blah, lost the brackets to html. Let&#039;s try again:

&lt;code&gt;
let propertyChanged = Event&lt;_, _&gt;()
interface INotifyPropertyChanged with
    [&lt;CLIEvent&gt;]
    member x.PropertyChanged = propertyChanged.Publish

member private x.propchg p = propertyChanged.Trigger(x, PropertyChangedEventArgs(p))
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Blah, lost the brackets to html. Let&#8217;s try again:</p>
<p><code><br />
let propertyChanged = Event&lt;_, _&gt;()<br />
interface INotifyPropertyChanged with<br />
    [&lt;CLIEvent&gt;]<br />
    member x.PropertyChanged = propertyChanged.Publish</p>
<p>member private x.propchg p = propertyChanged.Trigger(x, PropertyChangedEventArgs(p))<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rei</title>
		<link>http://www.voyce.com/index.php/2009/03/02/implementing-inotifypropertychanged-with-fsharp/comment-page-1/#comment-458</link>
		<dc:creator>rei</dc:creator>
		<pubDate>Mon, 06 Jul 2009 04:37:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.voyce.com/?p=90#comment-458</guid>
		<description>Here&#039;s a much easier way to do it:

let propertyChanged = Event()
interface INotifyPropertyChanged with
    []
    member x.PropertyChanged = propertyChanged.Publish

member private x.propchg p = propertyChanged.Trigger(x, PropertyChangedEventArgs(p))</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a much easier way to do it:</p>
<p>let propertyChanged = Event()<br />
interface INotifyPropertyChanged with<br />
    []<br />
    member x.PropertyChanged = propertyChanged.Publish</p>
<p>member private x.propchg p = propertyChanged.Trigger(x, PropertyChangedEventArgs(p))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: csappenf</title>
		<link>http://www.voyce.com/index.php/2009/03/02/implementing-inotifypropertychanged-with-fsharp/comment-page-1/#comment-457</link>
		<dc:creator>csappenf</dc:creator>
		<pubDate>Tue, 24 Mar 2009 12:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.voyce.com/?p=90#comment-457</guid>
		<description>Thanks. I was looking at this problem last night, and didn&#039;t find much documentation to guide me.</description>
		<content:encoded><![CDATA[<p>Thanks. I was looking at this problem last night, and didn&#8217;t find much documentation to guide me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

