You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
429 B
C#
18 lines
429 B
C#
2 years ago
|
using BenchmarkDotNet.Running;
|
||
|
|
||
|
namespace BenchMarkDotnetStudy.BenchmarkStudy
|
||
|
{
|
||
|
internal class Program
|
||
|
{
|
||
|
static void Main(string[] args)
|
||
|
{
|
||
|
Console.WriteLine("Benchmark 测试!");
|
||
|
|
||
|
var summary = BenchmarkRunner.Run<CounterTest3>();
|
||
|
|
||
|
Console.WriteLine("Benchmark 测试结束:");
|
||
|
|
||
|
Console.WriteLine($"总耗时:{summary.AllRuntimes}");
|
||
|
}
|
||
|
}
|
||
|
}
|