Related resources for Multi-Threaded Applications
  • Use Thread Local Storage to Pass Thread Specific Data1/31/2006 5:15:09 AM. The specific thread level storage is known as thread local storage or TLS for short. The .NET threading namespace allows .NET developers to use TLS from within their multi-threaded applications to store data that is unique to each thread.
  • Interlocking Threads1/27/2006 6:14:04 AM. Recently, I was building multi-threaded applications and noticed some intermittent data inconsistency. Soon, I found the culprit was locking mechanism. After doing some research, I gathered the following information and as usual decide to share with you guys.