有一些初步的资料提到C#7.0中有一个新的ValueTask:

https://blogs.msdn.microsoft.com/dotnet/2016/08/24/whats-new-in-csharp-7-0/

http://intellitect.com/generalized-async-return-types/

但是我找不到这种类型?

最佳答案

根据the documentationSystem.Threading.Tasks.ValueTask<TResult>位于System.Threading.Tasks.Extensions package中。

关于async-await - C#7.0中是否有ValueTask <T>?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41923214/

10-11 15:44