How to format a tring with thousands separation and decimal comma?
I have some strings:
string amount = "123456";
string amount2 = "123456.78";
I want the output to be:
amount: 123.456,00
amount2: 123.456,78
I already looked here, but this does not work for my example.
No comments:
Post a Comment