功能/操作/等应该在哪里。 进入代码?

发布于 2024-07-24 03:54:10 字数 43 浏览 3 评论 0原文

正如标题所说。 他们去哪里? 它们是变量,但它们也是代码......

As the title says. Where do they go? they're variables, but they're also code...

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

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

发布评论

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

评论(3

满地尘埃落定 2024-07-31 03:54:10

他们应该去需要他们的地方。 你能澄清你的问题吗?

保存对 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.

晚雾 2024-07-31 03:54:10

我将它们与其余变量放在一起,因为它们可以像任何其他变量一样重新分配和更改。 像这样:

class Test
{
    string s = "abcdefg";
    int one = 1;
    Func<int> myFunc;

    void MyMethod()
    {
        int x = 5;
        float f = 3.86;
        Action<string> a;
    }
}

我不太确定您还想表达什么(或其他地方)?

I'd put them with the rest of your variables, since they can be reassigned and changed just like any other variable. Like this:

class Test
{
    string s = "abcdefg";
    int one = 1;
    Func<int> myFunc;

    void MyMethod()
    {
        int x = 5;
        float f = 3.86;
        Action<string> a;
    }
}

I'm not quite sure what else (or where else) you would mean?

攒一口袋星星 2024-07-31 03:54:10

一个例子:

private Func<bool> isFooOn = () =>
{
    //do something
};

An example:

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