mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2025-12-08 19:25:22 +00:00
1) In `README.md`, we shouldn't use `c#` but `csharp` to make md recoginize it's the C# formation of codes. 2) Add 'ConfigureAwait(false)' as for the MSDN magazine usage. 3) Don't need Contribution History in README.md, because we can see the change logs in GitHub instead.
16 lines
355 B
C#
16 lines
355 B
C#
using BenchmarkDotNet.Running;
|
|
using System;
|
|
|
|
namespace IP2Region.Test.Benchmark
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Now starting benchmark test, please wait......");
|
|
var summary = BenchmarkRunner.Run<DbSearch_Test>();
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|