Skip to content

Instantly share code, notes, and snippets.

@mantzas
Created May 26, 2016 19:47
Show Gist options
  • Save mantzas/7d03938dc81bacc130c0dc805f1ce4d9 to your computer and use it in GitHub Desktop.
Save mantzas/7d03938dc81bacc130c0dc805f1ce4d9 to your computer and use it in GitHub Desktop.
public async Task SemaphoreSlim()
{
var s = new SemaphoreSlim(1, 1);
var entered = await s.WaitAsync(1000);
if(entered)
{
//actual code
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment