Func 没有返回任何内容?
这可能听起来有点愚蠢,但是如何创建一个不返回任何内容的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将
Action
用于接受变量并返回void
的委托。但请注意,如果您愿意,您也可以声明自己的委托类型。 例如,
Action
只是You can use
Action<T>
for a delegate that takes a variable and returnsvoid
.But note that you can also just declare your own delegate types if you want to.
Action<T>
, for example, is just动作是否会发生? 为您委派工作?
操作
Will the Action<T> delegate work for you?
Action<T>
您可能想要:
You may want: