mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-16 20:17:30 +08:00
18 lines
333 B
C#
18 lines
333 B
C#
using BenchmarkDotNet.Running;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CodeWalker.Benchmarks
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
BenchmarkRunner.Run<Benchmarks>();
|
|
}
|
|
}
|
|
}
|