fork(1) download
  1. using System;
  2. using System.Globalization;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. NumberFormatInfo nfi = new CultureInfo( "en-US", false ).NumberFormat;
  9. nfi.NumberGroupSeparator = ".";
  10. Int64 myInt = 1234567890;
  11. Console.WriteLine( myInt.ToString( "N", nfi ) );
  12. }
  13. }
Success #stdin #stdout 0.04s 37064KB
stdin
Standard input is empty
stdout
1.234.567.890.00