3

.NET 4.5 和 VS2012 是我的目标

在我的 C# 中,我有很多这样的旧代码:

var stuff;
ThreadPool.QueueUserWorkItem(() =>
    {
          stuff=GetStuff():
           InvokeOnMainThread(stuff);
    });

这是如何使用 C# 中的新任务系统完成的?

4

1 回答 1

4

这通常会映射到:

Task.Factory.StartNew(() =>
{
     return GetStuff():                  
}).ContinueWith(t =>
{
    // InvokeOnMainThread(t.Result); // Note that this doesn't need to "Invoke" now
    UseStuff(t.Result); 
}, TaskScheduler.FromCurrentSynchronizationContext()); // Moves to main thread

如果您使用的是 Visual Studio 2012 和 .NET 4.5,您还可以选择标记 method async,然后执行以下操作:

var stuff = await Task.Run(() => GetStuff());
UseStuff(stuff); // Will be on the main thread here...
于 2013-10-21T17:18:07.737 回答