using System; using System.Collections.Generic; using System.Windows.Forms; namespace UninstallSurvey { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { bool isValid = false; foreach (string arg in args) { if (arg == "survey") { isValid = true; break; } } if (!isValid) return; Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }