gpt4 book ai didi

c# - 返回已完成任务的最佳方法是什么?

转载 作者:行者123 更新时间:2023-11-30 19:10:40 25 4
gpt4 key购买 nike

返回完成的 Task 的最佳方式是什么?目的?

可以写成 Task.Delay(0) , 或 Task.FromResult<bool>(true) 任何。

但是最有效的方法是什么?

最佳答案

Stephen Toub (MSFT) 的回答:

If you want a new Task object each time, Task.FromResult is the most efficient. Task.Delay(0) in its current implementation will return a cached task, but that's an implementation detail. If you want to use a cached task, you should cache one yourself, e.g. private static readonly Task s_completedTask = Task.FromResult(true); and then use s_completedTask.

关于c# - 返回已完成任务的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16407904/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com