Releases: mattleibow/RangedObservableCollection
Releases · mattleibow/RangedObservableCollection
Version 1.0.1
Bugfix and performance improvement.
Changes
- A small performance improvement by caching the event args
- Corrected the behavior of the replace methods:
They now correctly trigger a reset since they are clearing the list.
Version 1.0
The initial release.
Features
- Support for adding or changing the collection in a single operation:
AddRange(IEnumerable<T>)
,ReplaceRange(IEnumerable<T>)
,RemoveRange(IEnumerable<T>)
- Support for replacing the collection items with a single item:
Replace(T)