I am learning await/async right now. and I have a question: Is there a difference between calling the await directly on the task and call it later?
var task = getAllAsync();
...
var list = await task;
OR
var list = await getAllAsync();
If there is a difference, what is it?