After reading up on inlining in the TPL from sources like here, I got the impression that a call to Task.Wait() will start a task that hasn't yet begun (at least using the default scheduler). However, writing up a quick demo like:
var taskB = new Task(
() =>
{
Console.WriteLine("In TaskB");
System.Threading.Thread.Sleep(5000);
Console.WriteLine("Leaving TaskB");
});
var taskA = new Task(
() =>
{
Console.WriteLine("In TaskA");
System.Threading.Thread.Sleep(500);
Console.WriteLine("Waiting on TaskB");
taskB.Wait();
Console.WriteLine("Leaving TaskA");
});
taskA.Start();
taskA.Wait();
Causes a deadlock. TaskA gets to the taskB.Wait() line, but taskB is never started. I haven't messed with the scheduler or anything, so I'm not really sure why the .Wait() call on taskB wouldn't cause it to start.