예제 #1
0
파일: AsyncLock.cs 프로젝트: amigin/Lykee
            internal Releaser(AsyncLock toRelease, bool isCanceled)
            {
                if (toRelease == null) throw new ArgumentNullException(nameof(toRelease));

                this._toRelease = toRelease;
                this._isCanceled = isCanceled;
            }
예제 #2
0
 internal Releaser(AsyncLock toRelease) { m_toRelease = toRelease; }