gpt4 book ai didi

c# - 异步获取和设置

转载 作者:太空狗 更新时间:2023-10-29 22:23:28 25 4
gpt4 key购买 nike

是否可以使用 async getset 方法创建属性?

如果是,怎么做?
如果不是,我应该如何正确调用 getset 中的异步方法?

最佳答案

没有。来自 C# 5 规范的第 10.15 节:

A method (§10.6) or anonymous function (§7.15) with the async modifier is called an async function. In general, the term async is used to describe any kind of function that has the async modifier.

所以只有方法、lambda 表达式和匿名方法可以使用 async修饰符。

我个人认为拥有这样的特性有点奇怪,尤其是因为该特性必须返回 Task<T>而不是 T .一个属性通常应该“感觉”起来非常轻量级——这并不真正适合异步。

关于c# - 异步获取和设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12534566/

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