I need my application for the ping address, which I will specify later, and just simply copy the Average Ping Time into the .Text label.
Any help?
EDIT:
I found a solution in case anyone is interested:
Ping pingClass = new Ping(); PingReply pingReply = pingClass.Send("logon.chronic-domination.com"); label4.Text = (pingReply.RoundtripTime.ToString() + "ms");
c # ping
Sergio Tapia Aug 15 '09 at 4:47 2009-08-15 04:47
source share