mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
14 lines
277 B
C#
14 lines
277 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace UglyToad.PdfPig.Benchmarks
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var summary = BenchmarkRunner.Run<BruteForceBenchmarks>();
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|