Sometimes I need to start an async job which works very slow. I don\'t care if that job success and I need to continue working on my current thread.
Like sometimes I nee
A standalone discard is the best way to avoid this warning.
_ = Task.Run(() => _emailService.SendEmailAsync());
Discards are dummy variables and can be used to ignore the Task object returned by an asynchronous operation.
https://docs.microsoft.com/en-us/dotnet/csharp/discards#a-standalone-discard