Skip to content

Instantly share code, notes, and snippets.

@thiagoloureiro
Created January 16, 2018 14:10
Show Gist options
  • Save thiagoloureiro/dfe7a6cdf2be5c0f50170eb2466a1deb to your computer and use it in GitHub Desktop.
Save thiagoloureiro/dfe7a6cdf2be5c0f50170eb2466a1deb to your computer and use it in GitHub Desktop.
using BenchmarkDotNet.Running;
using System;
namespace BenchNET
{
internal class Program
{
private static void Main(string[] args)
{
var summary = BenchmarkRunner.Run<Iterate>();
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment