I have an ObservableCollection, and I\'d like to set the content of an IList to this one. Now I could just create a new instance of the collection..:
public
There is a library that solves this problem. It contains an ObservableList that can wrap a List. It can be used in the following way:
List currentList = getMyList(); var obvList = new ObservableList(currentList);
https://github.com/gsonnenf/Gstc.Collections.ObservableLists