236 Star 2.6K Fork 528

GVPdotNET China / MiniExcel

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Program.cs 533 Bytes
一键复制 编辑 原始数据 按行查看 历史
阿翰 提交于 2021-07-13 08:29 . Benchmark coderefacturing
using System;
using System.ComponentModel;
using System.Diagnostics;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Running;
using MiniExcelLibs;
using OfficeOpenXml;
namespace MiniExcelLibs.Benchmarks
{
class Program
{
static void Main(string[] args)
{
#if DEBUG
new XlsxBenchmark().Epplus_QueryFirst_Test();
#else
BenchmarkSwitcher.FromTypes(new[]{typeof(XlsxBenchmark)}).Run(args, new Config());
#endif
Console.Read();
}
}
}
C#
1
https://gitee.com/dotnetchina/MiniExcel.git
git@gitee.com:dotnetchina/MiniExcel.git
dotnetchina
MiniExcel
MiniExcel
master

搜索帮助