我正在研究新的 Async CTP 并通过一些示例代码,
我遇到了这段代码:
public async void button1_Click(object sender, EventArgs e)
{
string text = txtInput.Text;
await ThreadPool.SwitchTo(); // jump to the ThreadPool
string result = ComputeOutput(text);
string finalResult = ProcessOutput(result);
await txtOutput.Dispatcher.SwitchTo(); // jump to the TextBox’s thread
txtOutput.Text = finalResult;
}
请问在哪里可以找到 ThreadPool.SwitchTo?SwithcTo 方法不在 ThreadPool 类上
我有一个 AsyncCtpLibrary.dll 的参考...但没有运气