mirror of
https://e.coding.net/circlecloud/SixiBroadcast.git
synced 2024-11-23 11:58:46 +00:00
23 lines
441 B
C#
23 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Sockets;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Windows.Forms;
|
|
|
|
namespace UDPServer
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// 应用程序的主入口点。
|
|
/// </summary>
|
|
static void Main()
|
|
{
|
|
new ServerListen(25433);
|
|
}
|
|
}
|
|
}
|