Search Results

3
votes
8answers
157 views

What are some examples of how anonymous types are useful?

I've read some articles on how to create anonymous types in C#. What are some use cases for these things? To me, it seems like it might make things a little more difficult to understand …
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
173 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 …