标签: c# double string-formatting
可能重复: Custom numeric format string to always display the sign
要在C#中将double设置为一定的精度,我写一下:
d.ToString("#0.00");
如果我想强制出现标志怎么办? e.g +2.54和-2.54
答案 0 :(得分:9)
Custom numeric format string to always display the sign
答案 1 :(得分:0)
希望这会奏效。
YourDoublenumber.ToString("+#;#");