最简单的Windows窗体应用程序,它存在什么问题?
1 using System.Windows.Forms;
2
3 class ShowForm
4 {
5 public static void Main()
6 {
7 Form form = new Form();
8
9 form.Show();
10 }
11 }
1 using System.Windows.Forms;
2
3 class ShowForm
4 {
5 public static void Main()
6 {
7 Form form = new Form();
8
9 form.Show();
10 }
11 }