Skill issue serializing tasks
Hi!
I need to serialize a list of tasks to only begin when the previous task is fully completed, let's take this snippet for example
I've tried using Task.WaitAll, await Task.WhenAll, looping and awaiting them, continue with (with and without await), but the closest i've been to succes is
delay start 1
delay start 2
delay start 3
delay end 3
delay end 2
delay end 1
Thank you!
I need to serialize a list of tasks to only begin when the previous task is fully completed, let's take this snippet for example
I've tried using Task.WaitAll, await Task.WhenAll, looping and awaiting them, continue with (with and without await), but the closest i've been to succes is
delay start 1
delay start 2
delay start 3
delay end 3
delay end 2
delay end 1
Thank you!