fork(30) download
  1. using System;
  2. using System.Globalization;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var date = DateTimeOffset.ParseExact("14.03.2014 22:16:23",
  9. "dd.MM.yyyy HH:mm:ss",
  10. new CultureInfo("en-US"));
  11. Console.WriteLine(date);
  12. }
  13. }
Success #stdin #stdout 0.08s 33992KB
stdin
Standard input is empty
stdout
3/14/2014 10:16:23 PM +00:00