Skip to content

Instantly share code, notes, and snippets.

@cmckni3
Created September 16, 2016 18:34
Show Gist options
  • Save cmckni3/21ef5c0f6acc85a67e5567be3fb99969 to your computer and use it in GitHub Desktop.
Save cmckni3/21ef5c0f6acc85a67e5567be3fb99969 to your computer and use it in GitHub Desktop.
Async C# program.cs
static int Main(string[] args)
{
AsyncContext.Run(() => MainAsync());
}
static async Task MainAsync()
{
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment