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