I'm trying to get my head around this. What's the difference between these 4?
1. private ObservableCollection<T> _myObservableCollestionOfTs
2. private readonly ObservableCollection<T> _myObservableCollestionOfTs
3. private ReadOnlyObservableCollection<T> _myObservableCollestionOfTs
4. private readonly ReadOnlyObservableCollection<T> _myObservableCollestionOfTs
Thank you for any help :)