Skip to content

Instantly share code, notes, and snippets.

@babaktaremi
Last active March 31, 2021 09:28
Show Gist options
  • Save babaktaremi/f68d10354619bc10865ea6990939cbd8 to your computer and use it in GitHub Desktop.
Save babaktaremi/f68d10354619bc10865ea6990939cbd8 to your computer and use it in GitHub Desktop.
class Program
{
static async Task Main(string[] args)
{
var task=new SomeTask();
var result=await task.DoSomeWork(10);
Console.WriteLine(result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment