功能/操作/等应该在哪里。 进入代码?
正如标题所说。 他们去哪里? 它们是变量,但它们也是代码......
As the title says. Where do they go? they're variables, but they're also code...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
正如标题所说。 他们去哪里? 它们是变量,但它们也是代码......
As the title says. Where do they go? they're variables, but they're also code...
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
他们应该去需要他们的地方。 你能澄清你的问题吗?
保存对 lambda(或任何委托)的引用的变量仍然是变量。 将其视为变量。
这并不意味着您必须使用变量。 在许多情况下,您只需指定 lambda 内联即可。
They should go where they're needed. Can you clarify your question?
A variable that holds a reference to a lambda (or any Delegate) is still a variable. Treat it like a variable.
That doesn't mean you HAVE to use variables. You can just specify the lambda inline in many cases.
我将它们与其余变量放在一起,因为它们可以像任何其他变量一样重新分配和更改。 像这样:
我不太确定您还想表达什么(或其他地方)?
I'd put them with the rest of your variables, since they can be reassigned and changed just like any other variable. Like this:
I'm not quite sure what else (or where else) you would mean?
一个例子:
An example: