문제

BlockingCollection contains only methods to add individual items. What if I want to add a collection? Should I just use "foreach" loop?

Why BlockingCollection doesn't contain method to add a collection? I think such method can be pretty useful.

도움이 되었습니까?

해결책

ICollection interfaces and many of the BCL list-type classes don't have an AddRange method for some reason and it is annoying.

Yes, you'll need to foreach over the collection, you could write you own extension method if you're using it a lot.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top