fork(1) download
  1. using System;
  2. using System.Diagnostics;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. Stopwatch sw = new Stopwatch();
  9. sw.Start();
  10. Console.WriteLine("fooooooooooooooooooooooooooooooooooooooooooooo");
  11. sw.Stop();
  12. Console.WriteLine("{0} ms", (1000.0 * sw.ElapsedTicks) / Stopwatch.Frequency);
  13. Console.WriteLine("{0} ms", sw.ElapsedMilliseconds);
  14. }
  15. }
Success #stdin #stdout 0.04s 33984KB
stdin
Standard input is empty
stdout
fooooooooooooooooooooooooooooooooooooooooooooo
15.3595 ms
15 ms