Threading in .NET
On June 26, I will be doing a talk on Threading in .NET to the East Tennessee .NET User Group. Within the subject of Threading, I will be talking about:
- Threading background. What makes one algorithm a good threading candidate and another a bad candidate.
- Creating your own managed threads. The basics on how to create a Thread within .NET
- Passing values in and out of a thread. Its a little more complicated than just passing values to a function and getting a return value.
- Synchronization. How do we keep multiple threads from stepping on objects that are accessible to multiple threads.
- Threadpool. Lets take a look at the basics of the threadpool.
Wally