using System; using System.Windows.Forms; namespace NUS_Downloader { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); if (args.Length != 0) Application.Run(new Form1(args)); else Application.Run(new Form1()); } } }