Exemplo n.º 1
0
 public RLocker(IRWLocker locker) {
     this.RWLocker = locker;
     this.RWLocker.EnterReadLock();
 }
Exemplo n.º 2
0
 public WLocker(IRWLocker locker)
 {
     this.RWLocker = locker;
     this.RWLocker.EnterWriteLock();
 }