i have a great confusion while working with the async and await.
My logic is simple, i have a method which will cause a delay of 15 seconds, like this
public static Task<int> delay(int num)
{
    Task.Delay(15000);
    return Task.FromResult(num);
}
now i am calling this method like this
 public static async void delayAsync(int num)
{
    Console.WriteLine(await delay(num)+"time :"+DateTime.Now);
}
static void Main(string[] args)
{
    var details = new details();
    Console.WriteLine("## start ##");
    for (var i = 0; i < 5; i++)
    {
        Console.WriteLine("counter: "+i);
        delayAsync(i);
    }
    Console.WriteLine("## finished ##");
    Console.Read();
}
my desired output is to get the number one by one after the delay of 15 seconds, but i am getting the results all at once without any pause. am i missing something.
I have gone through this blog and couldnt understand a thing
 
     
     
    