what is the difference between list and observable collection?
sakshi sharma
Select an image from your device to upload
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.