Concept Flow - How async execution flows
Start Main
Call async method
async method starts
Hit await, return to caller
Main continues running
async method resumes after await
async method completes
Main awaits result or finishes
This flow shows how an async method starts, pauses at await, lets the caller continue, then resumes later to complete.