fork(1) download
  1. using System;
  2. using System.Globalization;
  3. using System.Linq;
  4. using System.Collections.Generic;
  5.  
  6. public class Test
  7. {
  8.  
  9.  
  10. public static void Main()
  11. {
  12. decimal number = 90345m;
  13. var deCulture = CultureInfo.CreateSpecificCulture("de-DE");
  14. string str = number.ToString("N", deCulture);
  15. Console.Write(str);
  16. }
  17. }
Success #stdin #stdout 0.03s 34816KB
stdin
Standard input is empty
stdout
90.345,00