Skip to content

Instantly share code, notes, and snippets.

@mantzas
Created May 26, 2016 19:51
Show Gist options
  • Save mantzas/207e749ff02c408e95a2eb6624a84485 to your computer and use it in GitHub Desktop.
Save mantzas/207e749ff02c408e95a2eb6624a84485 to your computer and use it in GitHub Desktop.
public bool Run()
{
return true;
}
public Task<bool> RunAsync()
{
return Task.FromResult(true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment