Created
September 26, 2016 22:14
-
-
Save nbxx/7cf126b403d185c77b7c0e4bb77d8eb9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Stopwatch stopWatch = new Stopwatch(); | |
stopWatch.Start(); | |
foreach (var item in collection) | |
{ | |
DoSomething(item); | |
} | |
stopWatch.Stop(); | |
// Get the elapsed time as a TimeSpan value. | |
TimeSpan ts = stopWatch.Elapsed; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment