<?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: Write a Sortable ObservableCollection for WPF</title>
	<atom:link href="http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/feed/" rel="self" type="application/rss+xml" />
	<link>http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/</link>
	<description></description>
	<lastBuildDate>Mon, 06 Sep 2010 17:48:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ryan Williams</title>
		<link>http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/comment-page-1/#comment-46420</link>
		<dc:creator>Ryan Williams</dc:creator>
		<pubDate>Mon, 25 May 2009 15:24:28 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/#comment-46420</guid>
		<description>Thanks i saw this on http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/5909dbcc-9a9f-4260-bc36-de4aa9bbd383 first but that didnt have ascending and descending.</description>
		<content:encoded><![CDATA[<p>Thanks i saw this on <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/5909dbcc-9a9f-4260-bc36-de4aa9bbd383" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/5909dbcc-9a9f-4260-bc36-de4aa9bbd383</a> first but that didnt have ascending and descending.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Lagunas</title>
		<link>http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/comment-page-1/#comment-46248</link>
		<dc:creator>Brian Lagunas</dc:creator>
		<pubDate>Mon, 18 May 2009 23:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/#comment-46248</guid>
		<description>&lt;a href=&quot;#comment-46243&quot; rel=&quot;nofollow&quot;&gt;@Itay Sagui &lt;/a&gt; 

Well, this isn&#039;t a cure all, solve all solution.  This is just one way to accomplish a common task.  It is a simple implementation, so just about anyone can understand how it works.  I use it on a simple read only list of objects that have only 2 properties, so I notice no problems with performance even with records of over 5,000.  If you have a more efficient method please share your solution.</description>
		<content:encoded><![CDATA[<p><a href="#comment-46243" rel="nofollow">@Itay Sagui </a> </p>
<p>Well, this isn&#8217;t a cure all, solve all solution.  This is just one way to accomplish a common task.  It is a simple implementation, so just about anyone can understand how it works.  I use it on a simple read only list of objects that have only 2 properties, so I notice no problems with performance even with records of over 5,000.  If you have a more efficient method please share your solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Itay Sagui</title>
		<link>http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/comment-page-1/#comment-46243</link>
		<dc:creator>Itay Sagui</dc:creator>
		<pubDate>Mon, 18 May 2009 21:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/#comment-46243</guid>
		<description>Isn&#039;t it TERRIBLE unefficient to iterate over the sorted list, find the old &amp; new index of each item, and them move it?</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t it TERRIBLE unefficient to iterate over the sorted list, find the old &amp; new index of each item, and them move it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dew Drop - May 15, 2009 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/comment-page-1/#comment-46176</link>
		<dc:creator>Dew Drop - May 15, 2009 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Fri, 15 May 2009 12:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/#comment-46176</guid>
		<description>[...] Write a Sortable ObservableCollection for WPF (Brian Lagunas) [...]</description>
		<content:encoded><![CDATA[<p>[...] Write a Sortable ObservableCollection for WPF (Brian Lagunas) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SortedObservableCollection &#171; This one goes to 11</title>
		<link>http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/comment-page-1/#comment-46157</link>
		<dc:creator>SortedObservableCollection &#171; This one goes to 11</dc:creator>
		<pubDate>Fri, 15 May 2009 00:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://elegantcode.com/2009/05/14/write-a-sortable-observablecollection-for-wpf/#comment-46157</guid>
		<description>[...] read a post earlier today presenting an implementation of a SortedObservableCollection and I thought to myself, [...]</description>
		<content:encoded><![CDATA[<p>[...] read a post earlier today presenting an implementation of a SortedObservableCollection and I thought to myself, [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
