With the new ConcurrentBag in .NET 4, how do you remove a certain, specific object from it when only TryTake() and TryPeek() are
ConcurrentBag
TryTake()
TryPeek()
how about:
bag.Where(x => x == item).Take(1);
It works, I'm not sure how efficiently...