Esempio n. 1
0
                public void Release(IntPtr handle)
                {
                    GC.SuppressFinalize(this);

                    WindowLock _l;

                    lock (this)
                    {
                        _l = this._lock;

                        if (_l != null)
                        {
                            this._lock = null;
                        }
                        else
                        {
                            return;
                        }
                    }

                    _l.Unlock(handle);
                }
Esempio n. 2
0
 public Lock_(WindowLock l)
 {
     this._lock = l;
 }