I\'m doing a very silly benchmark on the ReaderWriterLock with this code, where reading happens 4x more often than writting:
class Program { static void
When is ReaderWriterLockSlim better than a simple lock?
When you have significantly more reads than writes.