Skip to content

Instantly share code, notes, and snippets.

@noseratio
Created June 16, 2021 01:51
Show Gist options
  • Save noseratio/fdce7c918f298a45f0e887ad40131510 to your computer and use it in GitHub Desktop.
Save noseratio/fdce7c918f298a45f0e887ad40131510 to your computer and use it in GitHub Desktop.
Trying try.dot.net
using System;
using System.Threading.Tasks;
public class Program
{
public async static Task Main()
{
await Task.Delay(1000);
Console.WriteLine("Hello after a delay!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment