fork download
  1. using System;
  2. using System.Globalization;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. CultureInfo.CreateSpecificCulture("fo-FO");
  9. var now = DateTime.Now;
  10. Console.WriteLine(now.ToShortDateString());
  11. Console.WriteLine(now.ToString("dd/MM/yyyy", CultureInfo.InvariantCulture));
  12.  
  13. }
  14. }
Success #stdin #stdout 0.04s 33960KB
stdin
Standard input is empty
stdout
7/8/2013
08/07/2013