Skip to content

Releases: mattleibow/RangedObservableCollection

Version 1.0.1

21 Oct 12:01
Compare
Choose a tag to compare

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

21 Oct 11:55
Compare
Choose a tag to compare

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)