Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
BlockingCollection 仅包含添加单个项目的方法。如果我想添加一个集合怎么办?我应该只使用“foreach”循环吗?
为什么 BlockingCollection 不包含添加集合的方法?我认为这种方法非常有用。
ICollectionAddRange接口和许多 BCL 列表类型的类由于某种原因没有方法,这很烦人。
ICollection
AddRange
是的,你需要foreach覆盖集合,如果你经常使用它,你可以编写自己的扩展方法。
foreach