fork download
  1. using System;
  2. using System.Globalization;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string text = "5/17/2013 8:08:48 PM";
  9. string timeFormat = "M/d/yyyy h:mm:ss tt";
  10. DateTime date = DateTime.ParseExact(text, timeFormat, CultureInfo.InvariantCulture);
  11. Console.WriteLine(date);
  12. }
  13. }
Success #stdin #stdout 0.06s 34192KB
stdin
Standard input is empty
stdout
5/17/2013 8:08:48 PM