How to Copy List in Observable Collection in Thread
问题 I have a background worker who fills/refills a List and After refilling and editing the List I copy this list in an Observable List: this.OBSMailCountList = new ObservableCollection<IMailCount>(_allMailCounts); The Problem is that the Collection is bind to an Live Diagramm and after the Copy in the List I get the Error : "The Value can not be NULL". My Question is: How to Copy an Observable Collection with Bindings in a Thread ? 回答1: Your problem is that you have _allMailCounts == null at the