Exemplo n.º 1
0
 public AsyncLock()
 {
     semaphore = new AsyncSemaphore(1);
     releaser = Task.FromResult(new Releaser(this));
 }
Exemplo n.º 2
0
 public AsyncLock()
 {
     m_semaphore = new AsyncSemaphore(1);
     m_releaser  = Task.FromResult(new Releaser(this));
 }