Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created August 17, 2017 00:01
Show Gist options
  • Save dcomartin/02b7b3c47b18c2fd1f2df05f682a4d65 to your computer and use it in GitHub Desktop.
Save dcomartin/02b7b3c47b18c2fd1f2df05f682a4d65 to your computer and use it in GitHub Desktop.
using System;
using System.Threading.Tasks;
namespace csharp71
{
class Program
{
static async Task Main(string[] args)
{
await Task.Run(() =>
{
Console.WriteLine("Hello World!");
Console.ReadKey();
});
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment