清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | using System.Net; if (! string .IsNullOrEmpty(txtPort.Text)) { IPAddress ip = IPAddress.Parse(txtIp.Text); IPEndPoint point= new IPEndPoint(ip, int .Parse(txtPort.Text)); try { TcpClient tcp= new TcpClient(); tcp.Connect(point); MessageBox.Show( "端口打开" ); } catch (Exception ex) { MessageBox.Show(ex.Message); } } |