X Tutup
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Reflection; using BenchmarkDotNet.Running; namespace Npgsql.Benchmarks { class Program { static void Main(string[] args) { new BenchmarkSwitcher(typeof(Program).GetTypeInfo().Assembly).Run(args); } } }
X Tutup