mirror of
https://github.com/claunia/plist-cil.git
synced 2025-12-16 19:14:26 +00:00
14 lines
269 B
C#
14 lines
269 B
C#
using BenchmarkDotNet.Running;
|
|
using System;
|
|
|
|
namespace Claunia.PropertyList.Benchmark
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var summary = BenchmarkRunner.Run<BinaryPropertyListParserBenchmarks>();
|
|
}
|
|
}
|
|
}
|