C#, Programming IT Nursery What’s the difference between Task.Start/Wait and Async/Await? I may be missing something but what is the difference between doing: public void MyMethod() { Task t = Task.Factory.StartNew(DoSomethingThatTakesTime); t.Wait(); UpdateLabelToSayItsComplete(); } public async void MyMethod() { var... May 28, 2022 0 Comments