fork(11) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var d = new DateTime(2014,12,26,17,21,30);
  8. Console.WriteLine("Date: {0:d/M/yyyy} Time: {0:hh:mm:ss}", d);
  9. }
  10. }
Success #stdin #stdout 0.04s 33880KB
stdin
Standard input is empty
stdout
Date: 26/12/2014 Time: 05:21:30