<?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: BindingList.Find and NotImplementedException</title>
	<atom:link href="http://www.codewrecks.com/blog/index.php/2007/10/12/bindinglistfind-and-notimplementedexception/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codewrecks.com/blog/index.php/2007/10/12/bindinglistfind-and-notimplementedexception/</link>
	<description>Wrecks of code floating in the sea of Internet By Ricci Gian Maria</description>
	<lastBuildDate>Thu, 09 Feb 2012 16:15:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: alkampfer</title>
		<link>http://www.codewrecks.com/blog/index.php/2007/10/12/bindinglistfind-and-notimplementedexception/comment-page-1/#comment-3193</link>
		<dc:creator>alkampfer</dc:creator>
		<pubDate>Fri, 02 Jul 2010 07:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.nablasoft.com/Alkampfer/?p=118#comment-3193</guid>
		<description>Overriding the FindCore is the right way of supporting find, because winform controls, like the gridview, does not pass predicate to find element. ;)

alk.</description>
		<content:encoded><![CDATA[<p>Overriding the FindCore is the right way of supporting find, because winform controls, like the gridview, does not pass predicate to find element. <img src='http://www.codewrecks.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>alk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.codewrecks.com/blog/index.php/2007/10/12/bindinglistfind-and-notimplementedexception/comment-page-1/#comment-3191</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 01 Jul 2010 20:51:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.nablasoft.com/Alkampfer/?p=118#comment-3191</guid>
		<description>There&#039;s a better way to do this now...  Took me a lot of tinkering with solutions I wasn&#039;t happy with before this solution finally hit me.

using System;
using System.Collections.Generic;
using System.ComponentModel;

namespace XYZ
{
	public static class Extensions
	{
		public static T Find(this BindingList s, Predicate exp)
		{
			List list = new List(s);

			return list.Find(exp);
		}
	}
}</description>
		<content:encoded><![CDATA[<p>There&#8217;s a better way to do this now&#8230;  Took me a lot of tinkering with solutions I wasn&#8217;t happy with before this solution finally hit me.</p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.ComponentModel;</p>
<p>namespace XYZ<br />
{<br />
	public static class Extensions<br />
	{<br />
		public static T Find(this BindingList s, Predicate exp)<br />
		{<br />
			List list = new List(s);</p>
<p>			return list.Find(exp);<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Extend BindingList with filter functionality</title>
		<link>http://www.codewrecks.com/blog/index.php/2007/10/12/bindinglistfind-and-notimplementedexception/comment-page-1/#comment-1865</link>
		<dc:creator>Extend BindingList with filter functionality</dc:creator>
		<pubDate>Sat, 22 Nov 2008 11:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.nablasoft.com/Alkampfer/?p=118#comment-1865</guid>
		<description>[...] annoyed by the limitation of the standard BindingList&lt;T&gt; included in the framework. In an old post I showed how can you create a specialized BindingList&lt;T&gt; to support generic Find() thanks to [...]</description>
		<content:encoded><![CDATA[<p>[...] annoyed by the limitation of the standard BindingList&lt;T&gt; included in the framework. In an old post I showed how can you create a specialized BindingList&lt;T&gt; to support generic Find() thanks to [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

