C# (CSharp) SimpleWriteApp MySmartReaderWriterLock - 2 examples found. These are the top rated real world C# (CSharp) examples of SimpleWriteApp.MySmartReaderWriterLock extracted from open source projects. You can rate examples to help us improve the quality of examples.
A reader-writer lock implementation designed to support a limited number of concurrent readers, and a single writer. If more than one writer attempts to acquire the lock at the same time, the behavior is undefined.