Search code examples
.netinotifycollectionchanged

Which NotifyCollectionChangedAction is used to indicate that an item changed?


When implementing INotifyCollectionChanged and raising the CollectionChanged event, you must provide a NotifyCollectionChangedAction argument. Which NotifyCollectionChangedAction is used to indicate that an item in the collection has changed, such as in the case where an item's value changes?


Solution

  • If it's the same object, but a field changes (e.g. same Person, but different Person.Photo), the collection didn't change. Otherwise, every change to the collection is one of the Enum values.

    If one Person is replaced by another, that's a Replace.