What is the difference between ReadOnlyObservableCollection
and ObservableCollection
?
I have the following code snippet:
private ObservableCollection<FeedData> _Feeds = new ObservableCollection<FeedData>();
public ObservableCollection<FeedData> Feeds
{
get
{
return this._Feeds;
}
}
Can I replace ObservableCollection
with ReadOnlyObservableCollection
?