Readers simultaneously read data with ReaderWriterLock - Csharp.Net
Q. How many readers can simultaneously read data with ReaderWriterLock if there is no writer locks apply?- Published on 31 Aug 15a. 9
b. 11
c. 13
d. No Limit
ANSWER: No Limit
There is no limit for number of users to access the data if ReaderWriterLock is applied. By using ReaderWriterLock you can synchronize access to a resource. It allows concurrent read access to multiple users. ReaderWriterLock class is available in System.Threading namespace.