c#4.0 Task.Factory.StartNew 用法
时间:2018-11-15 13:20:14
收藏:0
阅读:715
var t1 = Task.Factory.StartNew<string>(() =>
{
return “1111111”;
});
//t1.Wait();
t1.ContinueWith(i =>
{
this.Invoke(new EventHandler(delegate { ;}));
});
原文:https://www.cnblogs.com/simadi/p/9962550.html
评论(0)