c# - What is recommended way to perform async tasks in WPF? -
are there standard tools, or recommended approaches async tasks execution?
upd understand, how use threads. need know recommended wpf way block ui while performing async call, , how update progress info.
you can use several ways, example:
- thread pool
- background worker
- plain old threads
and since .net 4, preferred way use tasks
.
Comments
Post a Comment