SCLS/SSWCS_JXDL(2019)/SocketsUDP/UDP通讯测试/WindowsApplication1/Program.cs

20 lines
450 B
C#
Raw Permalink Normal View History

2025-05-19 09:45:29 +08:00
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace SocketsUDP
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}