0
How can i format this textbox?
I have this example 123456789. i want it display like: 123,456,789.00. how can i do?
2 Réponses
+ 4
Well it seems you need number formatting with 2 decimal places so the following line will do the job. 😉
Console.WriteLine(quot;{
123_456_789
.ToString("n2")
}");
+ 1
Thank you!