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.";
        }
    }

Currently my label4.Text get's something like: "187.371698712637".

I need it to show something like: "187.34"

Only two posts after the DOT. Can someone help me out?

link|improve this question

FYI - I think you meant it should display 187.3*7*, not .34 – Matt Grande Aug 18 '09 at 2:27
feedback

2 Answers

up vote 4 down vote accepted

string.Format is your friend.

String.Format("{0:0.00}", 123.4567);      // "123.46"
link|improve this answer
You Googled the same place, but didn't give it credit. :-) – Steven Sudit Aug 18 '09 at 2:27
And again I'm astonished at the speed of this site. Thanks for the help, works great! – Sergio Tapia Aug 18 '09 at 2:29
@Steve, yep looks that way! At least you got more rep :P – Matt Grande Aug 18 '09 at 2:41
Don't really care about the rep, but thanks. – Steven Sudit Aug 18 '09 at 11:45
2  
Yeah, that's why you have 11k. – MrBoJangles Jun 14 '11 at 20:43
feedback
// just two decimal places
String.Format("{0:0.00}", 123.4567);      // "123.46"
String.Format("{0:0.00}", 123.4);         // "123.40"
String.Format("{0:0.00}", 123.0);         // "123.00"

http://www.csharp-examples.net/string-format-double/

edit

No idea why they used "String" instead of "string", but the rest is correct.

link|improve this answer
Thanks, helped a lot! – Sergio Tapia Aug 18 '09 at 2:30
String is the same as string in C#. I'm not sure why the language has both, but it does. – Matt Grande Aug 18 '09 at 2:32
Which to use is a good question. What will happen if string is later mapped to a faster String2 class? Will that class have the same Format method? – Yuriy Faktorovich Aug 18 '09 at 2:35
1  
I think that it's preferred style to use String for static function calls – Joe H Aug 18 '09 at 2:36
1  
.Net has System.String, or String for short. C# has string, a native type that maps to System.String. You can use one in the place of the other, but when programming C#, there's no reason to use the non-C# name, not even in statics. Of course, due to common FormatWith extension methods, the question of whether to capitalize string for static calls becomes less relevant. – Steven Sudit Aug 18 '09 at 11:44
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.