C# 未找到标识符
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
让它
找不到它,因为它不是公开的
make
it cannot find it because it is not public
静态构造函数中不允许使用 public 等访问修饰符,因此请从 class1 构造函数中删除 public。
错误检查需要 2 个您未传入的参数。
我做了这两件事,它符合要求。
Access modifiers like public are not allowed on static constructors so drop the public from the class1 constructor.
error check takes 2 paramters which your not passing in.
I did those two things and it complied.