Select from following answers:- Use async/await
- Use Task.Run

- Use a BackgroundWorker
- All Above
Task.Run will run the CPU-bound code on a separate thread. This will free the user interface thread to make sure that the application remains responsive
Show Correct Answer
Source: microsoft exam ref book | |
Alert Moderator