var t1 = Task.Factory.StartNew<string>(() =>
{
return “1111111”;
});
//t1.Wait();
t1.ContinueWith(i =>
{
this.Invoke(new EventHandler(delegate { ;}));
});

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-01
  • 2021-06-26
  • 2021-08-06
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-28
相关资源
相似解决方案