difference between ObservableCollection and BindingList

Posted by Azhar on Stack Overflow See other posts from Stack Overflow or by Azhar
Published on 2010-11-26T10:57:38Z Indexed on 2012/12/19 23:03 UTC
Read the original article Hit count: 304

Filed under:
|
|
|
|

I want to know the difference between ObservableCollection and BindingList because I've used both to notify for any add/delete change in Source, but I actually do not know when to prefer one over the other.

Why would I choose one of the following over the other?

ObservableCollection<Employee> lstEmp = new ObservableCollection<Employee>();

or

BindingList<Employee> lstEmp = new BindingList<Employee>();

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET