Files
VSC/C#/_Test/002 - ping.cs
claudio 368d6fafea Issue
Code backup
2026-05-10 16:59:01 +02:00

11 lines
265 B
C#

TextToBeWritten = "Pinging 172.16.94.95... \r\n";
Ping ping = new Ping();
PingReply pingReply = ping.Send("172.16.94.95");
if (pingReply.Status == IPStatus.Success)
{
//Machine is alive
TextToBeWritten += "Success!";
}
else
TextToBeWritten += "Error!";