■ Ping 클래스에서 IP 주소를 사용해 송신하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using System; using System.Net; using System.Net.NetworkInformation; byte[] byteArray = new byte[] { 127, 0, 0, 1 }; IPAddress ipAddress = new IPAddress(byteArray); Ping ping = new Ping(); PingReply reply = ping.Send(ipAddress); Console.WriteLine(reply.Status ); Console.WriteLine(reply.RoundtripTime); |