Skip to content

Instantly share code, notes, and snippets.

@aramkoukia
Created May 22, 2017 20:17
Show Gist options
  • Select an option

  • Save aramkoukia/fc667618624f61c5ccaef8ee769abceb to your computer and use it in GitHub Desktop.

Select an option

Save aramkoukia/fc667618624f61c5ccaef8ee769abceb to your computer and use it in GitHub Desktop.
running the benchmarks
class Program
{
static void Main(string[] args)
{
var summary = BenchmarkRunner.Run<StringFormatVsStringInterpolation>();
summary = BenchmarkRunner.Run<StringConcatVsStringInterpolation>();
summary = BenchmarkRunner.Run<StringBuilderVsStringInterpolation>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment