c# 如何ping通IP,判断远程主机连接是否连通
c# 如何ping通IP
Ping pingSender = new Ping(); PingReply reply = pingSender.Send("172.10.10.22", 120);//第一个参数为ip地址,第二个参数为ping的时间 if (reply.Status == IPStatus.Success) { //ping的通 } else { //ping不通 MessageBox.Show("登录失败,1.确保连接内网 2.确保字符识别主机已开机","登录",MessageBoxButtons.OK,MessageBoxIcon.Information); return; }
欢迎讨论,相互学习。
cdtxw@foxmail.com