Program.cs
资源名称:Case01_3.rar [点击查看]
上传用户:liupy888
上传日期:2022-08-10
资源大小:734k
文件大小:0k
源码类别:
C#编程
开发平台:
C#
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows.Forms;
- namespace Case01_3
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Form1());
- }
- }
- }