An open API service indexing awesome lists of open source software.

https://github.com/lostmsu/recursivechangenotifier

Track changes in nested INotifyPropertyChanged and INotifyCollectionChanged objects
https://github.com/lostmsu/recursivechangenotifier

Last synced: over 1 year ago
JSON representation

Track changes in nested INotifyPropertyChanged and INotifyCollectionChanged objects

Awesome Lists containing this project

README

          

[![NuGet version](https://badge.fury.io/nu/RecursiveChangeNotifier.svg)](https://badge.fury.io/nu/RecursiveChangeNotifier)

```csharp
var listener = ChangeListener.Create(myViewModel);
listener.PropertyChanged +=
new PropertyChangedEventHandler(listener_PropertyChanged);
listener.CollectionChanged +=
new NotifyCollectionChangedEventHandler(listener_CollectionChanged);
```