What happens when multiple C# tasks starts when another task is completed
Le’ts say that I have this code:
Why is RunContinuationsAsynchronously an invalid continuation option for TaskFactory
I tried to create a TaskFactory
instance with TaskContinuationOptions.RunContinuationsAsynchronously
, so that I am sure that tasks created will have their continuations run asynchronously. However, this doesn’t seem to be possible as I get an ArgumentOutOfRangeException
.