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