How to make an ObservableCollection clone?
Here's a way, as I understand it, just copies the links?
private ObservableCollection<Vm> _observable; public override void Execute(ObservableCollection<Vm> obs) { _observable = new ObservableCollection<Vm>(obs); }