我一直在编写通用词典,但在尝试运行它时遇到了问题。
当我运行程序时,我收到此错误:The type or namespace name 'MainForm' could not be found (are you missing a using directive or an assembly reference?)
这是我的 Program.cs 代码:
namespace CriminalRecords
{
class Program
{
[STAThread]
static void Main(string[] args)
{
/// <summary>
/// The main entry point for the application.
/// </summary>
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}
}
由于 MainForm 出现错误,但这是我的表单的名称。我的问题是这是什么原因造成的,我该如何解决?