<?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 for Reed Copsey, Jr.</title>
	<atom:link href="http://reedcopsey.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://reedcopsey.com</link>
	<description>Thoughts on C#, WPF, .NET, and programming for Scientific Visualization</description>
	<lastBuildDate>Mon, 13 May 2013 18:13:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Setting useLegacyV2RuntimeActivationPolicy At Runtime by Reed</title>
		<link>http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/#comment-3039</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Mon, 13 May 2013 18:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/#comment-3039</guid>
		<description><![CDATA[Unfortunately, the runtime policy is either one way or the other, and once it&#039;s set, it can&#039;t be changed.  Mixing mixed-mode and click once in a single process is going to be problematic unless you make sure things are built for the correct runtime (CLR 4).]]></description>
		<content:encoded><![CDATA[<p>Unfortunately, the runtime policy is either one way or the other, and once it&#8217;s set, it can&#8217;t be changed.  Mixing mixed-mode and click once in a single process is going to be problematic unless you make sure things are built for the correct runtime (CLR 4).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting useLegacyV2RuntimeActivationPolicy At Runtime by Dangers of calling ICLRRuntimeInfo.BindAsLegacyV2Runtime at runtime &#124; BlogoSfera</title>
		<link>http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/#comment-3038</link>
		<dc:creator>Dangers of calling ICLRRuntimeInfo.BindAsLegacyV2Runtime at runtime &#124; BlogoSfera</dc:creator>
		<pubDate>Mon, 13 May 2013 13:03:17 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/#comment-3038</guid>
		<description><![CDATA[[...] http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/ [...]]]></description>
		<content:encoded><![CDATA[<p>[...] <a href="http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/" rel="nofollow">http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting useLegacyV2RuntimeActivationPolicy At Runtime by Mike</title>
		<link>http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/#comment-2994</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 10 May 2013 14:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/#comment-2994</guid>
		<description><![CDATA[Thank you for your blog.

This works well for those apps.  But I have a &quot;portal&quot; which contains mix mode apps and clickonce apps.  So what happens is the user launches a mix mode app and then tries to load a clickonce app and the error message comes up 

An error occurred while verifying the application.  Error text: A runtime has already been bound for legacy activation policy use.  (Exception from HRESULT:0x80131704

So is there a way to Unbind the legacy runtime.  do you think calls to 
        void SetDefaultStartupFlags();
        void GetDefaultStartupFlags();

would help,  But I don&#039;t know how to setup those methods with parameters or their .net calls

Thank you]]></description>
		<content:encoded><![CDATA[<p>Thank you for your blog.</p>
<p>This works well for those apps.  But I have a &#8220;portal&#8221; which contains mix mode apps and clickonce apps.  So what happens is the user launches a mix mode app and then tries to load a clickonce app and the error message comes up </p>
<p>An error occurred while verifying the application.  Error text: A runtime has already been bound for legacy activation policy use.  (Exception from HRESULT:0&#215;80131704</p>
<p>So is there a way to Unbind the legacy runtime.  do you think calls to<br />
        void SetDefaultStartupFlags();<br />
        void GetDefaultStartupFlags();</p>
<p>would help,  But I don&#8217;t know how to setup those methods with parameters or their .net calls</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Launching a WPF Window in a Separate Thread, Part 1 by Reed</title>
		<link>http://reedcopsey.com/2011/11/28/launching-a-wpf-window-in-a-separate-thread-part-1/#comment-2839</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Thu, 25 Apr 2013 16:06:26 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2011/11/28/launching-a-wpf-window-in-a-separate-thread-part-1/#comment-2839</guid>
		<description><![CDATA[Gennady,

Thank you for the updated info.  When I wrote this article (in late 2011), the link and title was correct. A recent MSDN update for VS 2012 has broken it.

I&#039;ve updated the article to link to the web browser sample, and noted that the original sample is no longer available.

-Reed]]></description>
		<content:encoded><![CDATA[<p>Gennady,</p>
<p>Thank you for the updated info.  When I wrote this article (in late 2011), the link and title was correct. A recent MSDN update for VS 2012 has broken it.</p>
<p>I&#8217;ve updated the article to link to the web browser sample, and noted that the original sample is no longer available.</p>
<p>-Reed</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Launching a WPF Window in a Separate Thread, Part 1 by Gennady Vanin (Novosibirsk)</title>
		<link>http://reedcopsey.com/2011/11/28/launching-a-wpf-window-in-a-separate-thread-part-1/#comment-2838</link>
		<dc:creator>Gennady Vanin (Novosibirsk)</dc:creator>
		<pubDate>Thu, 25 Apr 2013 04:01:04 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2011/11/28/launching-a-wpf-window-in-a-separate-thread-part-1/#comment-2838</guid>
		<description><![CDATA[Hello, Reed,
your &quot;Multiple Windows, Multiple Threads sample&quot; link does not really point to used in article  sample.

It points to MSDN &quot;Threading Model&quot; (.NET 4.5) which has the section with such title and respective snippets
This article has the only ref to one-window &quot;Single-Threaded Application with Long-Running Calculation Sample&quot; only. 
So, I downloaded few times that one-window sample

Only if to switch the version of .NET 3.0 or 3.5 of this article, the section &quot;Multiple Windows, Multiple Threads&quot; has a reference to used by you sample.
Though, it is called &quot;Multithreading Web Browser Sample&quot; and has quite different link:
http://msdn.microsoft.com/en-us/library/ms771272%28v=vs.90%29.aspx

Probably it would have been better to give more correct/direct references and titles...]]></description>
		<content:encoded><![CDATA[<p>Hello, Reed,<br />
your &#8220;Multiple Windows, Multiple Threads sample&#8221; link does not really point to used in article  sample.</p>
<p>It points to MSDN &#8220;Threading Model&#8221; (.NET 4.5) which has the section with such title and respective snippets<br />
This article has the only ref to one-window &#8220;Single-Threaded Application with Long-Running Calculation Sample&#8221; only.<br />
So, I downloaded few times that one-window sample</p>
<p>Only if to switch the version of .NET 3.0 or 3.5 of this article, the section &#8220;Multiple Windows, Multiple Threads&#8221; has a reference to used by you sample.<br />
Though, it is called &#8220;Multithreading Web Browser Sample&#8221; and has quite different link:<br />
<a href="http://msdn.microsoft.com/en-us/library/ms771272%28v=vs.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms771272%28v=vs.90%29.aspx</a></p>
<p>Probably it would have been better to give more correct/direct references and titles&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Behaviors to Allow the ViewModel to Manage View Lifetime in M-V-VM by Reed</title>
		<link>http://reedcopsey.com/2009/10/09/using-behaviors-to-allow-the-viewmodel-to-manage-view-lifetime-in-m-v-vm/#comment-2805</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Fri, 19 Apr 2013 15:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/?p=59#comment-2805</guid>
		<description><![CDATA[Den,

I&#039;ve written a bit about DI (with MEF) - you can click on the MEF category to see the articles.

I haven&#039;t really tackled message services or messaging models.  There&#039;s a lot out there that already handles this, and once you understand the basics of MVVM, toolkits like MVVM Light, etc, should make a lot more sense.  They handle those topics very nicely.

-Reed]]></description>
		<content:encoded><![CDATA[<p>Den,</p>
<p>I&#8217;ve written a bit about DI (with MEF) &#8211; you can click on the MEF category to see the articles.</p>
<p>I haven&#8217;t really tackled message services or messaging models.  There&#8217;s a lot out there that already handles this, and once you understand the basics of MVVM, toolkits like MVVM Light, etc, should make a lot more sense.  They handle those topics very nicely.</p>
<p>-Reed</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Behaviors to Allow the ViewModel to Manage View Lifetime in M-V-VM by den</title>
		<link>http://reedcopsey.com/2009/10/09/using-behaviors-to-allow-the-viewmodel-to-manage-view-lifetime-in-m-v-vm/#comment-2800</link>
		<dc:creator>den</dc:creator>
		<pubDate>Fri, 19 Apr 2013 12:19:02 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/?p=59#comment-2800</guid>
		<description><![CDATA[This is a great article. Brilliant!

Reed,
I am also interested if you have had discussed the following issue already?

Dependency Injection and a message service or messaging models? 

Thanks,
den]]></description>
		<content:encoded><![CDATA[<p>This is a great article. Brilliant!</p>
<p>Reed,<br />
I am also interested if you have had discussed the following issue already?</p>
<p>Dependency Injection and a message service or messaging models? </p>
<p>Thanks,<br />
den</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better User and Developer Experiences &#8211; From Windows Forms to WPF with MVVM: Conclusion by Reed</title>
		<link>http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2733</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Mon, 15 Apr 2013 18:47:43 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2733</guid>
		<description><![CDATA[I see storyboards are a pure-View issue, which means there really is no reason not to use code behind for them.  Attached properties or behaviors can often be used to trigger this if you want a xaml only solution, though.]]></description>
		<content:encoded><![CDATA[<p>I see storyboards are a pure-View issue, which means there really is no reason not to use code behind for them.  Attached properties or behaviors can often be used to trigger this if you want a xaml only solution, though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better User and Developer Experiences &#8211; From Windows Forms to WPF with MVVM: Conclusion by Gaurav</title>
		<link>http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2707</link>
		<dc:creator>Gaurav</dc:creator>
		<pubDate>Sun, 14 Apr 2013 06:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2707</guid>
		<description><![CDATA[This is awesome, after reading this article I suddenly realized that working with MVVM is more fun then using WPF directly.
I have one question though - where should we initiate call to storyboards, code behind or View-Model or is there a way to do that in XAML?]]></description>
		<content:encoded><![CDATA[<p>This is awesome, after reading this article I suddenly realized that working with MVVM is more fun then using WPF directly.<br />
I have one question though &#8211; where should we initiate call to storyboards, code behind or View-Model or is there a way to do that in XAML?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better User and Developer Experiences &#8211; From Windows Forms to WPF with MVVM: Conclusion by Reed</title>
		<link>http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2461</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Mon, 25 Mar 2013 17:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2461</guid>
		<description><![CDATA[Glad that it helped!  Thank you for the feedback.]]></description>
		<content:encoded><![CDATA[<p>Glad that it helped!  Thank you for the feedback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better User and Developer Experiences &#8211; From Windows Forms to WPF with MVVM: Conclusion by Jim</title>
		<link>http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2453</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Mon, 25 Mar 2013 03:14:52 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2453</guid>
		<description><![CDATA[Awesome help - went from not getting any of the WPF magic to totally loving it.
Thanks!]]></description>
		<content:encoded><![CDATA[<p>Awesome help &#8211; went from not getting any of the WPF magic to totally loving it.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parallelism in .NET &#8211; Part 18, Task Continuations with Multiple Tasks by C# 5 Async, Part 2: Asynchrony Today : Reed Copsey, Jr.</title>
		<link>http://reedcopsey.com/2010/07/19/parallelism-in-net-part-18-task-continuations-with-multiple-tasks/#comment-2407</link>
		<dc:creator>C# 5 Async, Part 2: Asynchrony Today : Reed Copsey, Jr.</dc:creator>
		<pubDate>Fri, 22 Mar 2013 15:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2010/07/19/parallelism-in-net-part-18-task-continuations-with-multiple-tasks/#comment-2407</guid>
		<description><![CDATA[[...] via the use of Task Continuations.&#160; In addition, the Task class provides a new model for task composition and error and cancelation handling.&#160; This is a far superior option to the previous [...]]]></description>
		<content:encoded><![CDATA[<p>[...] via the use of Task Continuations.&#160; In addition, the Task class provides a new model for task composition and error and cancelation handling.&#160; This is a far superior option to the previous [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# 5 Async, Part 3: Preparing Existing code For Await by Reed</title>
		<link>http://reedcopsey.com/2010/12/14/c-5-async-part-3-preparing-existing-code-for-await/#comment-2406</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Fri, 22 Mar 2013 15:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2010/12/14/c-5-async-part-3-preparing-existing-code-for-await/#comment-2406</guid>
		<description><![CDATA[When I wrote this, it was using the CTP - and was C# 4.  I&#039;ll adjust it now.  Note that you can target .NET 4 using Microsoft.Bcl.Async (but it still requires the C# 5 compilers) available from http://nuget.org/packages/Microsoft.Bcl.Async/]]></description>
		<content:encoded><![CDATA[<p>When I wrote this, it was using the CTP &#8211; and was C# 4.  I&#8217;ll adjust it now.  Note that you can target .NET 4 using Microsoft.Bcl.Async (but it still requires the C# 5 compilers) available from <a href="http://nuget.org/packages/Microsoft.Bcl.Async/" rel="nofollow">http://nuget.org/packages/Microsoft.Bcl.Async/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MEF CompositionInitializer for WPF by How to use VS2010 solution included with &#34;MEF CompositionInitializer for WPF&#34; article? &#124; BlogoSfera</title>
		<link>http://reedcopsey.com/2010/03/26/mef-compositioninitializer-for-wpf/#comment-2405</link>
		<dc:creator>How to use VS2010 solution included with &#34;MEF CompositionInitializer for WPF&#34; article? &#124; BlogoSfera</dc:creator>
		<pubDate>Fri, 22 Mar 2013 05:00:29 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2010/03/26/mef-compositioninitializer-for-wpf/#comment-2405</guid>
		<description><![CDATA[[...] bumped into Reed Copsey, Jr.&#8217;s article &#8220;MEF CompositionInitializer for WPF&#8221;. I downloaded included there Composition.Initialization.Desktop.zip solution for Visual Studio 2010 [...]]]></description>
		<content:encoded><![CDATA[<p>[...] bumped into Reed Copsey, Jr.&#8217;s article &#8220;MEF CompositionInitializer for WPF&#8221;. I downloaded included there Composition.Initialization.Desktop.zip solution for Visual Studio 2010 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# 5 Async, Part 3: Preparing Existing code For Await by Модернизация Переоборудование Царз Минобороны</title>
		<link>http://reedcopsey.com/2010/12/14/c-5-async-part-3-preparing-existing-code-for-await/#comment-2404</link>
		<dc:creator>Модернизация Переоборудование Царз Минобороны</dc:creator>
		<pubDate>Fri, 22 Mar 2013 03:28:56 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2010/12/14/c-5-async-part-3-preparing-existing-code-for-await/#comment-2404</guid>
		<description><![CDATA[Hello Reed,
Why have you tagged your C# 5 articlles with &quot;C# 4&quot; tag?

(I am interested to find and run code in C# 4 but not C# 5)]]></description>
		<content:encoded><![CDATA[<p>Hello Reed,<br />
Why have you tagged your C# 5 articlles with &#8220;C# 4&#8243; tag?</p>
<p>(I am interested to find and run code in C# 4 but not C# 5)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Performance and Optimization Isn&#8217;t Evil by Datacenter Acceleration - John W. Verity - Planning for Performance Is a Must</title>
		<link>http://reedcopsey.com/2011/09/09/performance-and-optimization-isnt-evil/#comment-2403</link>
		<dc:creator>Datacenter Acceleration - John W. Verity - Planning for Performance Is a Must</dc:creator>
		<pubDate>Thu, 21 Mar 2013 20:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2011/09/09/performance-and-optimization-isnt-evil/#comment-2403</guid>
		<description><![CDATA[[...] But I suspect it&#039;s more than that, which is why his article is still on the web and still enjoying enthusiastic referrals here and [...]]]></description>
		<content:encoded><![CDATA[<p>[...] But I suspect it&#039;s more than that, which is why his article is still on the web and still enjoying enthusiastic referrals here and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Long overdue Enum goodness in .NET 4 by Reed</title>
		<link>http://reedcopsey.com/2009/10/26/long-overdue-enum-goodness-in-net-4/#comment-2402</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Thu, 21 Mar 2013 17:24:37 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/?p=77#comment-2402</guid>
		<description><![CDATA[Candide - It is slower, but that&#039;s often not an issue.  If you&#039;re doing this in a tight loop where perf. matters, then yes, you might want to avoid this call.  I do like the additional clarity involved in the method call, in most cases.]]></description>
		<content:encoded><![CDATA[<p>Candide &#8211; It is slower, but that&#8217;s often not an issue.  If you&#8217;re doing this in a tight loop where perf. matters, then yes, you might want to avoid this call.  I do like the additional clarity involved in the method call, in most cases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Long overdue Enum goodness in .NET 4 by Candide</title>
		<link>http://reedcopsey.com/2009/10/26/long-overdue-enum-goodness-in-net-4/#comment-2401</link>
		<dc:creator>Candide</dc:creator>
		<pubDate>Thu, 21 Mar 2013 17:01:17 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/?p=77#comment-2401</guid>
		<description><![CDATA[enum.HasFlags is about a hundred times slower than testing the bit direcly.]]></description>
		<content:encoded><![CDATA[<p>enum.HasFlags is about a hundred times slower than testing the bit direcly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Synchronizing .NET 4 Tasks with the UI Thread by Reed</title>
		<link>http://reedcopsey.com/2009/11/17/synchronizing-net-4-tasks-with-the-ui-thread/#comment-2384</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Thu, 14 Mar 2013 15:55:33 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/?p=88#comment-2384</guid>
		<description><![CDATA[Yes - You typically need to specify TaskScheduler.Default on the continuation if you explicitly want it to not run on the previous thread.]]></description>
		<content:encoded><![CDATA[<p>Yes &#8211; You typically need to specify TaskScheduler.Default on the continuation if you explicitly want it to not run on the previous thread.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Synchronizing .NET 4 Tasks with the UI Thread by Philipp</title>
		<link>http://reedcopsey.com/2009/11/17/synchronizing-net-4-tasks-with-the-ui-thread/#comment-2383</link>
		<dc:creator>Philipp</dc:creator>
		<pubDate>Thu, 14 Mar 2013 09:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/?p=88#comment-2383</guid>
		<description><![CDATA[One potential gotcha here is that if you schedule a continuation for such a task, at least in .NET 4, it will continue to use that TaskScheduler. So there is a risk of invoking follow-up work on the UI thread. I find that most developers aren&#039;t aware of this.]]></description>
		<content:encoded><![CDATA[<p>One potential gotcha here is that if you schedule a continuation for such a task, at least in .NET 4, it will continue to use that TaskScheduler. So there is a risk of invoking follow-up work on the UI thread. I find that most developers aren&#8217;t aware of this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF &#8211; Common Dependency Property Exception by Http://Yahoo.Com</title>
		<link>http://reedcopsey.com/2009/10/23/wpf-common-dependency-property-exception/#comment-2378</link>
		<dc:creator>Http://Yahoo.Com</dc:creator>
		<pubDate>Thu, 28 Feb 2013 21:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/?p=67#comment-2378</guid>
		<description><![CDATA[This posting, Window Covers “WPF - Common Dependency Property Exception : Reed Copsey, Jr.
” ended up being remarkable. I am creating out a 
reproduce to demonstrate to my associates.
Many thanks,Joanna]]></description>
		<content:encoded><![CDATA[<p>This posting, Window Covers “WPF &#8211; Common Dependency Property Exception : Reed Copsey, Jr.<br />
” ended up being remarkable. I am creating out a<br />
reproduce to demonstrate to my associates.<br />
Many thanks,Joanna</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better User and Developer Experiences &#8211; From Windows Forms to WPF with MVVM: Conclusion by Tomas</title>
		<link>http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2376</link>
		<dc:creator>Tomas</dc:creator>
		<pubDate>Sun, 24 Feb 2013 09:57:24 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2010/01/07/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-conclusion/#comment-2376</guid>
		<description><![CDATA[Thank you for these superb articles. I am VB developer and I was frightened with WPF. There are so many options how to achieve the same thing. I didn&#039;t know where to start. Now I have really understood WPF with MVVM pattern.]]></description>
		<content:encoded><![CDATA[<p>Thank you for these superb articles. I am VB developer and I was frightened with WPF. There are so many options how to achieve the same thing. I didn&#8217;t know where to start. Now I have really understood WPF with MVVM pattern.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ConcurrentDictionary&lt;TKey,TValue&gt; used with Lazy&lt;T&gt; by QuanEdys</title>
		<link>http://reedcopsey.com/2011/01/16/concurrentdictionarytkeytvalue-used-with-lazyt/#comment-2373</link>
		<dc:creator>QuanEdys</dc:creator>
		<pubDate>Tue, 12 Feb 2013 02:40:09 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2011/01/16/concurrentdictionarytkeytvalue-used-with-lazyt/#comment-2373</guid>
		<description><![CDATA[Great idea, makes a lot of sense as well :)

Thank you for the post.]]></description>
		<content:encoded><![CDATA[<p>Great idea, makes a lot of sense as well <img src='http://reedcopsey.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thank you for the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better User and Developer Experiences &#8211; From Windows Forms to WPF with MVVM: Part 4, Data Binding by Brandy</title>
		<link>http://reedcopsey.com/2009/11/25/better-user-and-developer-experiences-from-windows-forms-to-wpf-with-mvvm-part-4-data-binding/#comment-2359</link>
		<dc:creator>Brandy</dc:creator>
		<pubDate>Tue, 22 Jan 2013 10:04:55 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/?p=104#comment-2359</guid>
		<description><![CDATA[It&#039;s good to get a fresh way of looknig at it.]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s good to get a fresh way of looknig at it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting useLegacyV2RuntimeActivationPolicy At Runtime by Reed</title>
		<link>http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/#comment-2352</link>
		<dc:creator>Reed</dc:creator>
		<pubDate>Fri, 11 Jan 2013 18:49:51 +0000</pubDate>
		<guid isPermaLink="false">http://reedcopsey.com/2011/09/15/setting-uselegacyv2runtimeactivationpolicy-at-runtime/#comment-2352</guid>
		<description><![CDATA[I&#039;ve never tried it.  The trick would be making sure your code ran early enough that it didn&#039;t fail.  It might be possible, but it needs to be one of the first things executed to work properly...]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve never tried it.  The trick would be making sure your code ran early enough that it didn&#8217;t fail.  It might be possible, but it needs to be one of the first things executed to work properly&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
 