Is there a read/write locking mechanism that works across processes (similar to Mutex, but read/write instead exclusive locking)? I would like to allow concurrent read access, but exclusive write access.
A:
System.Threading.Mutex has a mutex that can be used for intra-process communication. If you would like functionality that it doesn't support, it can be implemented via a mutex.
McKay
2010-08-17 15:05:17
Do you know of any samples that implement a read/write mutex?
Jeremy
2010-08-17 15:14:38