I have the following problem: i need to convert a decimal number to string. Example:
11.350 (eleven thousand three hundreds fifty)
code
lbl_valorBuyin.Text =
(Valid.GetDecimal(TORNEO.RBUYIN) +
Valid.GetDecimal(TORNEO.VALORBOUNTY)).ToString("###,###");
and the output is 11,350 and i want it to be 11.350. It´s not clear for me the use of format when converting decimal values to string.
I have tried differents formats, but not case. I couldn´t work it out.
Can you help me?
Thanks in advance.
Looks like Formatting numbers in different cultures