Func 没有返回任何内容?

发布于 2024-07-24 03:51:54 字数 57 浏览 4 评论 0原文

这可能听起来有点愚蠢,但是如何创建一个不返回任何内容的 Func 变量呢?

This may sound like a bit of a dumb question but how do I make a Func<> variable that doesn't return anything?

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

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

发布评论

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

评论(3

橘味果▽酱 2024-07-31 03:51:54

您可以将 Action 用于接受变量并返回 void 的委托。

但请注意,如果您愿意,您也可以声明自己的委托类型。 例如,Action 只是

public delegate void Action<T>(T obj)

You can use Action<T> for a delegate that takes a variable and returns void.

But note that you can also just declare your own delegate types if you want to. Action<T>, for example, is just

public delegate void Action<T>(T obj)
才能让你更想念 2024-07-31 03:51:54

动作是否会发生? 为您委派工作?

操作

Will the Action<T> delegate work for you?

Action<T>

半仙 2024-07-31 03:51:54

您可能想要:

Action<T> a = (t) => // your code here...

You may want:

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