Asynchronous programming offers certain benefits in creating high-availability applications. The asynchronous model provides the ability to switch execution of the "the DoWork" method to another thread. This can be important for client applications in order to avoid blocking the UI. It also provides the ability to execute several tasks on different threads at the same time. Finally, the async model gives us the ability to make calls to network resources in a way that does not block any threads. ...
Go to the complete details ...