数字を3桁ごとにコンマで区切って表示したい場合、C#では文字列補間の補間式を使うと簡単にできるみたいです。
補完式の使い方は次のような感じです。
{<interpolationExpression>[,<alignment>][:<formatString>]}
サンプル
int price = 12345;
Console.WriteLine($"price: {price:#,0}");
実行結果
price: 12,345
ちなみに、string.Format
を使って実装したい場合は次のような感じになります。
サンプル
int price = 12345;
Console.WriteLine(string.Format("price: {0:#,0}", price));
実行結果
price: 12,345
リンク
$ – string interpolation – C# reference | Microsoft Docs
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/tokens/interpolated