Added fast cloner and benchmarks

This commit is contained in:
clodan
2025-02-20 15:21:13 +00:00
parent 5a5e18f568
commit 7a2db04cfe
12 changed files with 403 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
using BenchmarkDotNet.Running;
namespace Benchmarks;
public class Program
{
public static void Main(string[] args)
{
var summary = BenchmarkRunner.Run<ClonerBenchmarks>();
Console.WriteLine(summary);
}
}