using System.Threading.Tasks;
public static void Main()
Console.WriteLine("Before Test");
Console.WriteLine("Exception");
Console.WriteLine("After Test");
private static async void Test()
Console.WriteLine("Before Task.Delay");
Console.WriteLine("After Task.Delay");