我无法让我的扩展方法工作(C#)

发布于 2024-08-05 07:25:27 字数 189 浏览 6 评论 0原文

有什么想法吗?我将其标记为静态,但它不起作用!

class ExtensionMethods
{
    public static int Add(this int number, int increment)
    {
        return number + increment;
    } 
}

Any ideas? I marked it as static but it's not working!

class ExtensionMethods
{
    public static int Add(this int number, int increment)
    {
        return number + increment;
    } 
}

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

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

发布评论

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

评论(2

半夏半凉 2024-08-12 07:25:27

你缺少课堂上的静态信息。编译器应该告诉你这个吗?

public static class ExtensionMethods

You are missing a static on the class. The compiler should have told you this?

public static class ExtensionMethods
很快妥协 2024-08-12 07:25:27

我认为,它需要在静态类中定义:

namespace MyNameSpace
{
    public static class ExtensionMethods
    {
        public static int Add(this int number, int increment)
        {
            return number + increment;
        } 
    }
}

您还必须在要使用它们的代码文件中包含 using MyNameSpace; ,除非它位于同一命名空间中

I think, it needs to be defined in a static class:

namespace MyNameSpace
{
    public static class ExtensionMethods
    {
        public static int Add(this int number, int increment)
        {
            return number + increment;
        } 
    }
}

You must also include a using MyNameSpace; in the code file you want to use them in, unless it is in the same namespace

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