Als «decimal-point» getaggte Fragen

73
Lassen Sie nach dem Punkt nur zwei Dezimalstellen

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...