Skip to content

Instantly share code, notes, and snippets.

@DamianSuess
Created June 2, 2017 16:28
Show Gist options
  • Save DamianSuess/74a823098751a1053f5001fd5c4ba312 to your computer and use it in GitHub Desktop.
Save DamianSuess/74a823098751a1053f5001fd5c4ba312 to your computer and use it in GitHub Desktop.
C# Benchmark
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