使用 Func时如何调用 invoke
在函数Test(Func
中,如何调用f.invoke()?我收到错误 委托“Func”不接受“0”参数
In the function Test(Func<string,bool> f)
, how to call f.invoke()? I received the error
Delegate 'Func' does not take '0' arguments
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者:
or:
委托
Func
是一个接受字符串作为参数并返回 bool 的委托。要调用它,您需要提供一个字符串。例如,要么应该工作
The delegate
Func<string, bool>
is a delegate that takes a string as an argument and returns bool. To invoke it, you need to supply a string.e.g., either should work