Hacker News new | ask | show | jobs
by Murk 4683 days ago
await PostPicToServiceAsync(mFile.GetStream (), tagsCtrl.Tags);

Seems to be equivalent to a blocking call of old, or am I missing something?

1 comments

Yes, you are :-)

The compiler rewrites your code to schedule all next lines as a continuation. There is no blocking.