Can we use async without await C#?
Using async without await in C#? Consider Using async without await. The warning is exactly right: if you mark your method async but dont use await anywhere, then your method wont 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