Skip to content

Instantly share code, notes, and snippets.

@ozansulukpinar
Created May 9, 2021 15:55
Show Gist options
  • Save ozansulukpinar/80ef6eab22f389d0e65008afa1089a51 to your computer and use it in GitHub Desktop.
Save ozansulukpinar/80ef6eab22f389d0e65008afa1089a51 to your computer and use it in GitHub Desktop.
Ping an IP address
using System.Net.NetworkInformation;
public class Program
{
public static void Main()
{
Ping ping = new Ping();
PingReply reply = ping.Send(IPAddress,1000);
string status = reply.Status.ToString();
Console.WriteLine(status);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment