Can anyone suggest a good implementation of a generic collection class that implements the IBindingListView & IBindingList interfaces and provides Filtering and Searching capabilities?
I see my current options as:
- Using a class that someone else has written and tested
- Inheriting from BindingList, and implementing the IBindingListView interfaces
- Write a custom collection from scratch, implementing IBindingListView and IBindingList.
Obviously, the first option is my preferred choice.
Thanking you.