public RLocker(IRWLocker locker) { this.RWLocker = locker; this.RWLocker.EnterReadLock(); }
public WLocker(IRWLocker locker) { this.RWLocker = locker; this.RWLocker.EnterWriteLock(); }