Possible Duplicate:
Round a double to 2 significant figures after decimal point
I need at most N decimals, no more, but I don't want trailing zeroes. For example, if N = 2 then
15.352
15.355
15.3
15
should become (respectively)
15.35
15.36
15.3
15
I need at most N decimals, no more, but I don't want trailing zeroes. For example, if N = 2 then
should become (respectively)
|
|||
| show 3 more comments |
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Try
The second paramater for round is for you to specify how many decimal places to round to. It will round up by default. |
||||
|
|
|
This can be done by using a custom format string, such as "0.##", which displays a maximum two decimal places.
Reference: http://www.csharp-examples.net/string-format-double/ |
|||||||
|
|
Google does lead the way: Use ## to skip leading zeros in your format string.
|
|||
|
|
decimalinstead ofdoubleto start with. – Jon Skeet Nov 26 '11 at 8:22double, but placing, for example, an averaged value as it is in a table creates an unreadable mess of digits, which is why I need to format them in this way (and each column needs to round to a different number of digits). – Nikola Novak Nov 26 '11 at 9:18