fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8. string dateFormat="wed Dec 30,2015";
  9. DateTime dateTime=DateTime.Parse(dateFormat);
  10. Console.WriteLine(dateTime.ToString());
  11.  
  12.  
  13.  
  14. }
  15. }
Success #stdin #stdout 0.02s 132160KB
stdin
Standard input is empty
stdout
12/30/2015 12:00:00 AM