¡@

Home 

c# Programming Glossary: system.collections.concurrent

Parsing one terabyte of text and efficiently counting the number of occurrences of each word

http://stackoverflow.com/questions/12190326/parsing-one-terabyte-of-text-and-efficiently-counting-the-number-of-occurrences

file. using System using System.Collections.Generic using System.Collections.Concurrent using System.IO using System.Threading namespace WordCount class..

why my disruptor example is so slow?

http://stackoverflow.com/questions/13334778/why-my-disruptor-example-is-so-slow

19902 30 7065 BlockingCollection code using System using System.Collections.Concurrent using System.Diagnostics using System.Linq using System.Threading..

Thread safe collections in .NET

http://stackoverflow.com/questions/2980283/thread-safe-collections-in-net

introduces several thread safe collections in the System.Collections.Concurrent Namespace ConcurrentBag T Represents a thread safe unordered..

Print html document from Windows Service in C# without print dialog

http://stackoverflow.com/questions/416314/print-html-document-from-windows-service-in-c-sharp-without-print-dialog

All rights reserved. File StaTaskScheduler.cs using System.Collections.Concurrent using System.Collections.Generic using System.Linq namespace..

What is the difference between SynchronizedCollection<T> and the other concurrent collections?

http://stackoverflow.com/questions/4655150/what-is-the-difference-between-synchronizedcollectiont-and-the-other-concurren

T and the other concurrent collections in the System.Collections.Concurrent namespace differ from each other apart from Concurrent Collections.. T where every access is wrapped in a lock statement. The System.Collections.Concurrent namespace is much newer. It wasn't introduced until .NET 4.0.. you should use one of the collections provided by the System.Collections.Concurrent namespace whenever possible. Just as with choosing between the..

Why is ConcurrentBag<T> so slow in .Net (4.0)? Am I doing it wrong?

http://stackoverflow.com/questions/4785622/why-is-concurrentbagt-so-slow-in-net-4-0-am-i-doing-it-wrong

test to compare the performance of ConcurrentBag from System.Collections.Concurrent relative to locking lists. I am extremely surprised that ConcurrentBag..

Multiple producers, single consumer

http://stackoverflow.com/questions/5105382/multiple-producers-single-consumer

very easy to do using the BlockingCollection T defined in System.Collections.Concurrent . Basically you create your queue so that all threads can access..

Thread-safe List<T> property

http://stackoverflow.com/questions/5874317/thread-safe-listt-property

If you are targetting .Net 4 there are a few options in System.Collections.Concurrent Namespace You could use ConcurrentBag T in this case instead..

No ConcurrentList<T> in .Net 4.0?

http://stackoverflow.com/questions/6601611/no-concurrentlistt-in-net-4-0

T in .Net 4.0 I was thrilled to see the new System.Collections.Concurrent namespace in .Net 4.0 quite nice I've seen ConcurrentDictionary..