Generic Dictionary をコーディングしていて、実行しようとしたときに問題が発生しました。
プログラムを実行すると、次のエラーが表示されます。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 が原因でエラーが表示されますが、これは私のフォームの名前です。私の質問は、何が原因で、どうすれば修正できるのでしょうか?