SyntaxFix
Write A Post
Hire A Developer
Questions
You could add your IEnumerable range to a list then set the ICollection = to the list.
IEnumerable<T> source; List<item> list = new List<item>(); list.AddRange(source); ICollection<item> destination = list;