Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. Stopwatch sw = new Stopwatch();
  2. sw.Start();
  3. new Thread( () => { } ).Start();
  4. sw.Stop();
  5. Console.WriteLine(sw.Elapsed);
  6. Console.ReadKey();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement