Ping ping = new Ping();
            PingReply reply = ping.Send("119.75.218.45");//百度IP
            if(reply.Status == IPStatus.Success)
            {
                MessageBox.Show("已联网");
             }
             else
             {
                 MessageBox.Show("未联网");
              }