c# - What is difference between
Task t1 = new Task(action, 'alpha'); / Construct a started task Task t2 = Task.Factory.StartNew(action, 'beta'); / Block the main thread to demonstrate that t2 is executing t2.Wait(); / Launch t1 t1.Start(); Console.WriteLine
Get Price