fork download
  1. using System;
  2. using static System.Console;
  3. using System.Globalization;
  4.  
  5. public class Program {
  6. public static void Main() {
  7. WriteLine(DateTime.ParseExact("03/16/2016 04:09:16.936", "MM/dd/yyyy HH:mm:ss.fff", CultureInfo.InvariantCulture));
  8. WriteLine(DateTime.Parse("03/16/2016 04:09:16.936", new CultureInfo("en-US")));
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/118450/101
Success #stdin #stdout 0.02s 17844KB
stdin
Standard input is empty
stdout
3/16/2016 4:09:16 AM
3/16/2016 4:09:16 AM