variable decimal places in .Net string formatters?

后端 未结 8 1541
感动是毒
感动是毒 2020-12-29 04:49

Fixed decimal places is easy

String.Format(\"{0:F1}\", 654.321);

gives

654.3

How do I feed the number of

8条回答
  •  长发绾君心
    2020-12-29 05:40

    Use the custom numeric format string Link

    var value = 654.321;
    var s = value.ToString("0.##");
    

提交回复
热议问题