using System;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
await MethodOneAsync();
Console.WriteLine("End Main Method");
}
static async Task MethodOneAsync()
Console.WriteLine("MethodOneAsync Started");
await Task.Delay(4000); // hold execution for 4 seconds
Console.WriteLine("MethodOneAsync Completed");