I used BackgroundWorker in a small project to handle loading data from the database, space waves and it really helped the UI not to freeze. However, I now usually switch to async/await because it is more compact.
Loading
I used BackgroundWorker in a small project to handle loading data from the database, space waves and it really helped the UI not to freeze. However, I now usually switch to async/await because it is more compact.