Related resources for ReaderWriterLock class
  • ReaderWriterLock Class in C# Threading1/13/2012 12:44:55 AM. The ReaderWriterLock class is used to synchronize access to a resource. At any given time, it allows concurrent read access to multiple (essentially unlimited) threads, or it allows write access for a single thread.
  • Multithreading Part 3: Thread Synchronization1/28/2006 4:43:07 AM. The .NET framework provides a number of classes and data types that you can use to control the access to shared resources. Thread synchronization refers to the act of shielding against multithreading issues such as data- races, deadlocks and starvation.