mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2025-12-08 19:25:22 +00:00
16 lines
329 B
C#
16 lines
329 B
C#
using BenchmarkDotNet.Running;
|
|
using System;
|
|
|
|
namespace IP2Region.Test.Benchmark
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Welcome To IP2Regin!");
|
|
var summary = BenchmarkRunner.Run<DbSearch_Test>();
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|