fork download
  1. using System;
  2. using System.Globalization;
  3.  
  4. namespace ProgramConsole
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. string str = "24-04-2014T15:18:18";
  11. DateTime dtStartDateTime = DateTime.ParseExact(str,
  12. "dd-MM-yyyyTHH:mm:ss",
  13. CultureInfo.InvariantCulture);
  14. Console.WriteLine(dtStartDateTime);
  15. }
  16. }
  17. }
  18.  
Success #stdin #stdout 0.07s 34024KB
stdin
Standard input is empty
stdout
4/24/2014 3:18:18 PM