Skip to content

Instantly share code, notes, and snippets.

@dariuszparys
Created January 26, 2018 14:17
Show Gist options
  • Save dariuszparys/cfa97abe0b88640bbebec99de954291e to your computer and use it in GitHub Desktop.
Save dariuszparys/cfa97abe0b88640bbebec99de954291e to your computer and use it in GitHub Desktop.
C# 7.1 Using async / await with Main
using System;
using System.Threading.Tasks;
namespace demo
{
class Program
{
static async Task Main(string[] args)
{
await Task.Delay(1000);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment