封装不带参数、带返回值的方法

发布于 2024-11-04 00:18:35 字数 183 浏览 2 评论 0原文

我正在寻找类似 Action的东西(“封装一个具有单个参数且不返回值的方法”)并且像 Func一样(“封装一个具有一个参数并返回 TResult 参数指定类型的值的方法”),但我必须封装一个不带参数且具有返回值的方法。 有什么东西吗,还是我必须写一个?

I'm looking for something like Action<T> ("Encapsulates a method that has a single parameter and does not return a value") and like Func<T, TResult> ("Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter"), but I have to encapsulate a method without parameter and with return value.
Is there anything, or I have to write one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫烠⑼条掵仅有一顆心 2024-11-11 00:18:35

看起来您想要 Func

Looks like you want Func<TResult>.

简单 2024-11-11 00:18:35

Func 能够做到这一点。它有多种变体,具体取决于您需要的输入参数的数量,包括没有。不过,它始终采用返回类型,例如 Func 表示不带参数的函数,返回 int。

希望这有帮助。

Func is capable of doing that. There are several variants of it, depending on the number of input parameters you're after, including none. It always takes a return type, though, e.g. Func<int> represents a function with no arguments, returning an int.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文