C# Threading/Async: Running a task in the background while UI is interactable

前端 未结 4 1607

After looking around on both Async/Await and Threading, I\'m still unsure of the right way to apply it to my situation. No matter the variation that I try my UI still hangs

4条回答
  •  离开以前
    2020-12-05 08:06

    As an alternative, you could look into using BackgroundWorker class to do the job, your UI will stay interactive.

提交回复
热议问题