Can someone confirm that the code below definitely removes elements from the BlockingCollection
foreach (var item in myCollection.GetConsumingEnumerable()) {
He's talking about the MSDN that he does, but I just need to be sure, because I have an application that accepts real-time applications from 4 of these collections 60 ms apart, and after a while my application freezes and I donβt I know why and just wanted to be sure that the elements are deleted.
source share