Example #1
0
 public RLocker(IRWLocker locker) {
     this.RWLocker = locker;
     this.RWLocker.EnterReadLock();
 }
Example #2
0
 public WLocker(IRWLocker locker)
 {
     this.RWLocker = locker;
     this.RWLocker.EnterWriteLock();
 }