2using System.Collections.Generic;
4using System.Windows.Forms;
16 String title =
"Form1";
17 if (Environment.GetCommandLineArgs().Length > 1)
18 title = Environment.GetCommandLineArgs()[1];
20 Application.EnableVisualStyles();
21 Application.SetCompatibleTextRenderingDefault(
false);
22 Application.Run(
new Form1(title));