说明: class Program { static void Main(string[] args) { System.Net.Sockets.TcpListener listener = new System.Net.Sockets.TcpListener(IPAddress.Any, Properties.Settings.Default.Port); listener.Start(); while (true) { const int bufferSize = 256; TcpClient c
<zhousiwei> 上传 | 大小:133kb