Created
September 16, 2016 18:34
-
-
Save cmckni3/21ef5c0f6acc85a67e5567be3fb99969 to your computer and use it in GitHub Desktop.
Async C# program.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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