what is the difference between list and observable collection?
sakshi sharma
Select an image from your device to upload
I’ve always been a bit confused about this too. Is ObservableCollection just for WPF data binding, or can it be used in other .NET applications as well? - space waves
An ObservableCollection can be updated from UI exactly like any collection. The true difference is rather straightforward:
ObservableCollection implements INotifyCollectionChanged which provides notification when the collection is changed
A list provides methods to search, sort, and manipulate lists.