MVP? MVP!

i love C#
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

C# ping(转)

Posted on 2008-08-25 10:24  renhb  阅读(284)  评论(1)    收藏  举报
 System.Net.NetworkInformation.Ping ping = new System.Net.NetworkInformation.Ping();
            System.Net.NetworkInformation.PingReply rep
= ping.Send("127.0.0.1");
            Console.WriteLine(rep.Status);
            Console.WriteLine(rep.Address);
            Console.Read();