This is a balanced reader/writer lock. This means readers and writers "take turns" if there is contention on the lock, so no one will get starved out. This is in contrast to System.Threading.ReaderWriterLockSlim that prefers writers, so if there are many writers trying to take the lock, they can starve out readers.
163
This is a balanced reader/writer lock. This means readers and writers "take turns" if there is contention on the lock, so no one will get starved out. This is in contrast to
System.Threading.ReaderWriterLockSlim
that prefers writers, so if there are many writers trying to take the lock, they can starve out readers.