Notice
Recent Posts
Recent Comments
분노의 챔질
C# Ping Test 본문
반응형
Ping pingSender = new Ping();
PingReply reply = pingSender.Send("192.168.0.4");
Console.WriteLine("Status :" + reply.Status);
if (reply.Status == IPStatus.Success)
{
//성공
}
else
{
//실패
}
반응형
'Programming > C#' 카테고리의 다른 글
UltraGrid 기초 사용법 (2) | 2010.12.02 |
---|---|
AForge.NET (0) | 2010.12.01 |
C# 역어셈블리 (0) | 2010.07.29 |
C# MACAddress (0) | 2010.07.28 |
C# 중복실행방지 (0) | 2010.06.25 |