摘要: Hello,I'm using the following code to perform a ping:Ping p = new Ping();p.PingCompleted += new PingCompletedEventHandler(p_PingCompleted);p.SendAsync(new IPAddress(new byte[] { 10, 2, 1, 25 }), 1000);p.Dispose();And then I'm catching the reply this way:void p_PingCompleted(object sender, Pi 阅读全文
posted @ 2011-12-07 16:58 一修先生 阅读(508) 评论(0) 推荐(0)