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 15

a. 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.

Post your comment / Share knowledge


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)