Created
June 2, 2017 16:28
-
-
Save DamianSuess/74a823098751a1053f5001fd5c4ba312 to your computer and use it in GitHub Desktop.
C# Benchmark
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
using System.Diagnostics; | |
// ... | |
Stopwatch sw = new Stopwatch(); | |
sw.Start(); | |
// ... | |
sw.Stop(); | |
Console.WriteLine("Elapsed={0}", sw.Elapsed); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment