fork(1) download
  1. using System;
  2. using System.Diagnostics;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. Stopwatch stopwatch = new Stopwatch();
  9. stopwatch.Start();
  10. //bindingSource.datasource = db.table;
  11. stopwatch.Stop();
  12. Console.WriteLine("Time elapsed: {0}", stopwatch.Elapsed);
  13. }
  14. }
Success #stdin #stdout 0.03s 33688KB
stdin
Standard input is empty
stdout
Time elapsed: 00:00:00.0000578