Why have the calling thread walk into the async method until the inner \'await\'?
Isn\'t it cleaner to just spawn a thread as soon as an async method is called. That way
I like to think of async..await to be syntactic sugar for continuation-passing style programming.
async..await
With that in mind it has nothing to do with threads.