示例#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; }