I was watching a vid about Async CTP and saw that if you call await from e.g. main thread , then the execution will continue from main thread when the work is completed.
e.g
//called from main thread
var result = await SomeAsyncWork();
//this will execute in main thread also
console.writeline(result)
I had the naive impression that there would be a normal call back going on which would be executed on a worker thread.
At some level that must be what is going on since you can wrap normal async methods in a Task of T with Task.FromAsync
but normal async methods will run in worker threads, so how is the callback in the workerthread marshalled back to the main thread?