Archived
1
0

统一归档20260319

This commit is contained in:
2026-03-19 19:39:01 +08:00
parent 4e148364a9
commit 3ea0af246b
187 changed files with 5041 additions and 75005 deletions

22
CS/lab15/15_2/Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace _15_2
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}