How to insert a thousand separator (comma) with convert to double

前端 未结 7 2281
误落风尘
误落风尘 2020-12-05 03:43

I am trying to format the contents of a text box:

this.lblSearchResults1.Text =
    Convert.ToDouble(lblSearchResults1.Text).ToString(); 

H

7条回答
  •  隐瞒了意图╮
    2020-12-05 04:38

    Looking at the standard numeric format strings:

    You can most easily use 'N' which will do the right thing based on the user culture, so in your case you can just add "N" as a param to the ToString

    ([double]12345.67).ToString("N")
    

    12,345.67

提交回复
热议问题