[Solved] What’s the difference between await (async) Task and await Task? [duplicate]
Case B is not async-await. If you have a thread, and this thread has to start a fairly lengthy process in which it has nothing to do but wait, usually because someone / something else performs the operation, then your thread could decide to do something else instead of waiting for the operation to finish. … Read more