Skip to content

Instantly share code, notes, and snippets.

@negativeeddy
Created December 8, 2017 22:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save negativeeddy/22f5b04e46c9514051a26994788f2434 to your computer and use it in GitHub Desktop.
Save negativeeddy/22f5b04e46c9514051a26994788f2434 to your computer and use it in GitHub Desktop.
async Main method in C#
static async Task Main(string[] args)
{
HttpClient client = new HttpClient();
string result = await client.GetStringAsync("http://www.bing.com");
Console.WriteLine(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment