using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.NetworkInformation; //Include this
namespace PingProto
{
public class Program
static void Main(string[] args)
try
Ping myPing = new Ping();
PingReply reply = myPing.Send("192.168.1.3", 1000);
if (reply != null)
}
catch
Console.WriteLine("ERROR: You have Some TIMEOUT issue");
Console.ReadKey();