摘要: using System.Net.Sockets; TcpClient client = new TcpClient(); //参数1指定ip地址,参数2指定端口 var result = client.BeginConnect("127.0.0.1", 80, null, null); //Tim 阅读全文
posted @ 2020-10-07 10:31 Jichan·Jong 阅读(1267) 评论(0) 推荐(0) 编辑