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