<?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: Loving Linq: Use .Except to Find the Difference Between Two Lists</title>
	<atom:link href="http://christopherdeweese.com/blog2/post/loving-linq-use-except-to-find-the-difference-between-two-lists/feed" rel="self" type="application/rss+xml" />
	<link>http://christopherdeweese.com/blog2/post/loving-linq-use-except-to-find-the-difference-between-two-lists</link>
	<description>IArchitect, IBlog, ILeader</description>
	<lastBuildDate>Fri, 02 Jul 2010 14:23:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Loving Linq &#38; Generics: Using .Except with EqualityComparer&#60;T&#62; &#171; christopherDeweese.com</title>
		<link>http://christopherdeweese.com/blog2/post/loving-linq-use-except-to-find-the-difference-between-two-lists/comment-page-1#comment-81</link>
		<dc:creator>Loving Linq &#38; Generics: Using .Except with EqualityComparer&#60;T&#62; &#171; christopherDeweese.com</dc:creator>
		<pubDate>Tue, 12 Jan 2010 19:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://christopherdeweese.com/blog2/post/loving-linq-use-except-to-find-the-difference-between-two-lists#comment-81</guid>
		<description>[...] the last post on Loving Linq we covered the .Except method for comparing two lists.&#160; The example was very simple and [...]</description>
		<content:encoded><![CDATA[<p>[...] the last post on Loving Linq we covered the .Except method for comparing two lists.&#160; The example was very simple and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://christopherdeweese.com/blog2/post/loving-linq-use-except-to-find-the-difference-between-two-lists/comment-page-1#comment-61</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 04 Jan 2010 15:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://christopherdeweese.com/blog2/post/loving-linq-use-except-to-find-the-difference-between-two-lists#comment-61</guid>
		<description>Yep. In my testing as long as they had the same data in there order didn&#039;t matter.  I was using it to compare one file that had a few dozen things to another that had like 12,000.  If any of the few dozen (file a) were not in the 12,000 (file b) I wanted to know.

Working pretty good so far!</description>
		<content:encoded><![CDATA[<p>Yep. In my testing as long as they had the same data in there order didn&#8217;t matter.  I was using it to compare one file that had a few dozen things to another that had like 12,000.  If any of the few dozen (file a) were not in the 12,000 (file b) I wanted to know.</p>
<p>Working pretty good so far!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Patterson</title>
		<link>http://christopherdeweese.com/blog2/post/loving-linq-use-except-to-find-the-difference-between-two-lists/comment-page-1#comment-60</link>
		<dc:creator>Chris Patterson</dc:creator>
		<pubDate>Mon, 04 Jan 2010 14:55:51 +0000</pubDate>
		<guid isPermaLink="false">http://christopherdeweese.com/blog2/post/loving-linq-use-except-to-find-the-difference-between-two-lists#comment-60</guid>
		<description>Oops. Not EXACTLY equal, just containing the same things although not in the same order.

csharp&gt; string[] a = new string[] { &quot;A&quot;, &quot;B&quot;, &quot;C&quot; };
csharp&gt; string[] b = new string[] { &quot;B&quot;, &quot;A&quot;, &quot;C&quot; };
csharp&gt; var c = a.Except(b);
csharp&gt; c
      &gt; ;
{  }</description>
		<content:encoded><![CDATA[<p>Oops. Not EXACTLY equal, just containing the same things although not in the same order.</p>
<p>csharp&gt; string[] a = new string[] { &#8220;A&#8221;, &#8220;B&#8221;, &#8220;C&#8221; };<br />
csharp&gt; string[] b = new string[] { &#8220;B&#8221;, &#8220;A&#8221;, &#8220;C&#8221; };<br />
csharp&gt; var c = a.Except(b);<br />
csharp&gt; c<br />
      &gt; ;<br />
{  }</p>
]]></content:encoded>
	</item>
</channel>
</rss>

