2011-07-01 9 views

Respuesta

8

He aquí un ejemplo:

ObservableCollection<string> myCollection = new ObservableCollection<string>; 
myCollection.Add("One"); 
myCollection.Add("Two"); 
myCollection.Add("Three"); 
myCollection.Add("Four"); 
myCollection.Add("Five"); 

myCollection[4] = "Six"; // Replace (i.e. Set) 
Cuestiones relacionadas