C# 未找到标识符

发布于 2024-08-22 19:34:11 字数 971 浏览 0 评论 0原文

using System;

namespace it2b_project_01
{
    static class class1
    {
        static public class1()
        {
            InitializeComponent();
        }


        public static void error_check(object sender, EventArgs e)
        {
        }
    }
}

(不同的 .cs 文件)

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace it2b_project_01
{
    public partial class Create_an_Order : Form
    {
        public Create_an_Order()
        {
            InitializeComponent();
        }

        private void Create_an_Order_Load(object sender, EventArgs e)
        {

        }

        private void Order_Button_Submit_Click(object sender, EventArgs e)
        {
            class1.error_check();
        }
    }
}

创建 Order.cs(26,13):错误 CS0103:名称“class1”在当前上下文中不存在。

using System;

namespace it2b_project_01
{
    static class class1
    {
        static public class1()
        {
            InitializeComponent();
        }


        public static void error_check(object sender, EventArgs e)
        {
        }
    }
}

(different .cs file)

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace it2b_project_01
{
    public partial class Create_an_Order : Form
    {
        public Create_an_Order()
        {
            InitializeComponent();
        }

        private void Create_an_Order_Load(object sender, EventArgs e)
        {

        }

        private void Order_Button_Submit_Click(object sender, EventArgs e)
        {
            class1.error_check();
        }
    }
}

Create an Order.cs(26,13): error CS0103: The name 'class1' does not exist in the current context.

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

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

发布评论

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

评论(2

掩于岁月 2024-08-29 19:34:11

让它

static class class1

public static class class1

找不到它,因为它不是公开的

make

static class class1

public static class class1

it cannot find it because it is not public

走过海棠暮 2024-08-29 19:34:11
  1. 静态构造函数中不允许使用 public 等访问修饰符,因此请从 class1 构造函数中删除 public。

  2. 错误检查需要 2 个您未传入的参数。

我做了这两件事,它符合要求。

  1. Access modifiers like public are not allowed on static constructors so drop the public from the class1 constructor.

  2. error check takes 2 paramters which your not passing in.

I did those two things and it complied.

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