fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. DateTime t = DateTime.Now;
  8.  
  9. Console.WriteLine(t.ToString());
  10. Console.WriteLine(t.ToShortDateString());
  11. Console.WriteLine(t.ToLongDateString());
  12. Console.WriteLine(t.ToString());
  13. }
  14. }
Success #stdin #stdout 0.01s 29808KB
stdin
Standard input is empty
stdout
1/19/2017 1:03:25 PM
1/19/2017
Thursday, January 19, 2017
1/19/2017 1:03:25 PM