As title. Say I have a function:
async Task Foo()
{
// get Task obj that will be returned from this function
}
Is it possible to get a reference to that Task object?
The reason I'm curious about this, is because I want to be able to keep track of some tasks.