I need to allow multiple writers/single-reader at the same time.
I have found ReaderWriterLockSlim class but I have a problem with the naming. I need to use EnterReadLock() for allowing writer to write and EnterWriteLock() for allowing reader to write, which can be a bit confusing for further use.
Does ReaderWriterLockSlim class have a wrapper class for my issue or can you suggest another solution.
Thanks!