public void LoadAveragePingTime()
{
try
{
PingReply pingReply = pingClass.Send("logon.chronic-domination.com");
double AveragePing = (pingReply.RoundtripTime / 1.75);
label4.Text = (AveragePing.ToString() + "ms");
}
catch (Exception)
{
label4.Text = "Server is currently offline.";
}
}
Derzeit ist mein label4.Text so etwas wie: "187.371698712637".
Ich brauche es, um etwas zu zeigen wie: "187.37"
Nur zwei Beiträge nach dem DOT. Kann mir jemand helfen?