Asynchronous vs Parallel Programming
What is AJAX?
What is the TPL?
What is Task.Run?
- always returns a Task so you can use Continuation
What does an Anonymous Function look like?
() => { do stuff here }
Task.Run and UI thread?
How about Task.Result?
What is Task.IsFaulted?
What is Task.ConfigureAwait?
How about async/await?
What about async method returns?
- void is unacceptable except on event handlers
How about Task.WhenAll()?
What about the State Machine?
What is a deadlock example?