Asynchronous programming in C # 3.5

I need to do asynchronous programming in a Windows application (.net 3.5 C #) by running long processes in the background and showing the user the progress form in the user interface. How can I make this windows based application

+4
source share
3 answers

See the BackgroundWorker class:

+2
source
+5
source

Well, you let your lengthy processes run asynchronously in separate threads and notify the user interface thread. If you want to get more detailed information, you will need to provide more detailed information and some code.

+1
source

Source: https://habr.com/ru/post/1412243/


All Articles