fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. DateTime d = new DateTime(2008, 9, 3, 16, 5, 7);
  8.  
  9. Console.WriteLine(d.ToString("G"));
  10. }
  11. }
Success #stdin #stdout 0.03s 37024KB
stdin
Standard input is empty
stdout
9/3/2008 4:05:07 PM