Why does 0.ToString("#.##") return an empty string? Shouldn't it be 0.00 or at least 0?
|
|
|
See here for the custom numeric formats that can be passed to this method. |
|||||
|
|
Because in a format string, the If you do this instead: Interestingly, if you do this: If you want all three digits: From the comments to this answer, your argument seems to be,
The response is simple: You have the choice how you wish it to be displayed. That's what the custom format strings are for. You have simply chosen the incorrect format string for your needs. |
|||||||||
|
|
According to the documentation about the Digit Placeholder.
If you want the zero to display use the Zero PlaceHolder
|
|||
|
|
