You have the following method:
async Task DoWorkAsync();
Is there a difference in functionality between the following two calls:
1. DoWorkAsync(); 2. await DoWorkAsync().ConfigureAwait(false);
The only thing I see is that Visual Studio gives a warning on first use, informing you that the method will continue to run without the expected result.
c # async-await
lekroif
source share