Can we use async without await C#?
Jackson Reed
Published Apr 19, 2026
Using async without await in C#? Consider Using async without await. The warning is exactly right: if you mark your method async but don’t use await anywhere, then your method won’t be asynchronous. If you call it, all the code inside the method will execute synchronously.Click to see full answer. Accordingly, can we use await without Async in C#?Every now and then you’ll find yourself in a synchronous method (i.e. one that doesn’t return a Task or Task