Skip to content

Instantly share code, notes, and snippets.

@benschg
benschg / AsyncAwait.cs
Created December 29, 2020 09:35 — forked from kungfux/AsyncAwait.cs
C# async await example
using System;
using System.Windows.Forms;
using System.Threading;
using System.Threading.Tasks;
class Program
{
[STAThread]
public static void Main()
{