コード例 #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; }