Consider this code:
public async Task TheBestMethodEver1() {
}
public Task TheBestMethodEver2() {
Any of these methods can be called as:
await TheBestMethodEverX();
What is the difference between the two methods and why should I use the first, usually?
A-student
source share