Windows窗体应用程序错误提示“不包含适合于入口点的静态“Main”方法”

看看项目是否缺少Program.cs,如果没有新建类Program.cs写入如下代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace KeepIdea
{
    static class Program
    {
        ///
        /// 应用程序的主入口点。
        ///

        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new LoginForm());
        }
    }
}

你可能感兴趣的:(C#)