using System; using System.Collections.Generic; $if$ ($targetframeworkversion$ >= 3.5)using System.Linq; $endif$$if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks; $endif$using System.Windows.Forms; namespace $safeprojectname$ { static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }