Here is an example:
ObservableCollection<string> myCollection = new ObservableCollection<string>; myCollection.Add("One"); myCollection.Add("Two"); myCollection.Add("Three"); myCollection.Add("Four"); myCollection.Add("Five"); myCollection[4] = "Six";
source share