I\'m hoping to be able to reject some items after they have been added to an ObservableCollection. I am not able to subclass the ObservableCollection or use any sort of view, s
use a ToList() in order to iterate over the list.
ToList()
foreach(var item in collection.ToList()) { if(item.Name == "Fred") { collection.Remove(item); } }