fork(4) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. DateTime a = new DateTime(2008, 01, 02, 23, 30, 00);
  8. DateTime b = new DateTime(2008, 01, 03, 06, 30, 00);
  9.  
  10. TimeSpan duration = b - a;
  11.  
  12. Console.WriteLine(duration);
  13. }
  14. }
Success #stdin #stdout 0.03s 33768KB
stdin
Standard input is empty
stdout
07:00:00