forum

Home / DeveloperSection / Forums / difference between ObservableCollection and BindingList in wpf?

difference between ObservableCollection and BindingList in wpf?

Anonymous User545110-Aug-2013

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>();


Updated on 10-Aug-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By