Skip to main content
deleted 70 characters in body
Source Link
Jamal
  • 35.2k
  • 13
  • 134
  • 238

As per the async / await best practice, you should never use async void. You should modifiedmodify your  private async void StartTest to  private async Task StartTest. Following is the MSDN best practice link

https://msdn.microsoft.com/en-us/magazine/jj991977.aspxHere is the MSDN best practice link.

As per the async / await best practice you should never use async void. You should modified your  private async void StartTest to  private async Task StartTest. Following is the MSDN best practice link

https://msdn.microsoft.com/en-us/magazine/jj991977.aspx

As per async / await best practice, you should never use async void. You should modify your private async void StartTest to private async Task StartTest. Here is the MSDN best practice link.

Source Link

As per the async / await best practice you should never use async void. You should modified your private async void StartTest to private async Task StartTest. Following is the MSDN best practice link

https://msdn.microsoft.com/en-us/magazine/jj991977.aspx