I have a ListCollectionView that I would like to put into a List, but I'm unsure how to do this.
Below is the code that I have tried. It returns an error that ListCollectionView
does not contain a definition for ToList().
var repItems = (ListCollectionView)view;
var listItems = repItems.ToList();
Can anyone show me how?