using BenchmarkDotNet.Running; namespace API.Benchmark { /// /// To build this, cd into API.Benchmark directory and run /// dotnet build -c Release /// then copy the outputted dll /// dotnet copied_string\API.Benchmark.dll /// public static class Program { private static void Main(string[] args) { //BenchmarkRunner.Run(); //BenchmarkRunner.Run(); //BenchmarkRunner.Run(); BenchmarkRunner.Run(); } } }