我想在文本框中显示使用Task.Run调用的函数的执行时间,因为这需要一些时间 完成,我为此创建了一个主题。
问题是当我点击开始按钮时,会立即打印出textBox1中的时间并且我想要显示 经过时间,但仅在MyFunction完成处理或按下取消按钮后。
sw.Stop()应该去哪里?
我目前的开始和取消按钮代码是:
void Begin_Click(object sender, EventArgs e)
{
Stopwatch sw = Stopwatch.StartNew();
// Pass the token to the cancelable operation.
cts = new CancellationTokenSource();
Task.Run(() => MyFunction(inputstring, cts.Token), cts.Token);
sw.Stop();
textBox1.Text += Math.Round(sw.Elapsed.TotalMilliseconds / 1000, 4) + " sec";
}
void Cancel_Click(object sender, EventArgs e)
{
if (cts != null)
{
cts.Cancel();
cts = null;
}
}
答案 0 :(得分:3)
您还没有等待MyFunction
完成,您只需计算Task.Run
来电的开始时间。要等待MyFunction
完成,您可以等待Task.Run
返回的任务。
async void Begin_Click(object sender, EventArgs e)//<--Note the async keyword here
{
Stopwatch sw = Stopwatch.StartNew();
// Pass the token to the cancelable operation.
cts = new CancellationTokenSource();
await Task.Run(() => MyFunction(inputstring, cts.Token), cts.Token);//<--Note the await keyword here
sw.Stop();
textBox1.Text += Math.Round(sw.Elapsed.TotalMilliseconds / 1000, 4) + " sec";
}