Cross-process read-write synchronization primative in .NET?

后端 未结 5 837
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-06 08:07

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,

5条回答
  •  孤城傲影
    2021-02-06 08:57

    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.

提交回复
热议问题