Is there any way to start task using ContinueWith task?

后端 未结 0 963
有刺的猬
有刺的猬 2021-02-12 08:08

My code:

var r = from x in new Task(() => 1)
        from y in new Task(() => x + 1) 
        select y;
r.ContinueWith(x =>         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题