fork(14) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Nullable<DateTime> data = new DateTime(2007, 6, 15, 5, 23, 45);
  8. Console.WriteLine(data.Value.ToString("H:mm"));
  9. }
  10. }
Success #stdin #stdout 0.03s 34792KB
stdin
Standard input is empty
stdout
5:23