0
votes
4answers
49 views
How can I have many threads that need to know the next ID to process and then increment that number safely?
I'm working a program that will have a bunch of threads processing data.
Each thread needs to grab the next available ID, increment that ID by 1 for the next thread and do this in a thread- …
2
votes
6answers
170 views
How can I continuously QueueUserWorkItems but without queuing them all at once?
I'm working on a multi-threaded scraper for a website and as per a different question I've decided to use the ThreadPool with QueueUserWorkItem().
How can I continually Queue work items wit …
2
votes
How to find the Number of CPU Cores via .NET/C#?
Environment.ProcessorCount should give you the number of cores on the local machine.
…
