Reactive List
$ dotnet add package ReactiveListA Reactive List giving observables for changes, and current list items.
Reactive: The list is reactive, and will notify observers of changes.
Add: Add an item to the list.
Remove: Remove an item from the list.
Update: Update an item in the list.
IndexOf: Get an item from the current list of items.
Count: Get the count of items in the list.
Clear: Clear the list of all items.
Added: Observe changes Added to the list.
Removed: Observe changes Removed from the list.
Updated: Observe changes Updated in the list.
CurrentItems: Observe the current list of items.