SyntaxFix
Write A Post
Hire A Developer
Questions
Simpler, using string interpolation instead of String.Format
$"{12456:n0}"; // 12,456 $"{12456:n2}"; // 12,456.00
or using yourVariable
double yourVariable = 12456.0; $"{yourVariable:n0}"; $"{yourVariable:n2}";