你的位置:首页 > 软件开发 > ASP.net > 不要手动StopWatch了,让BenchmarkDotNet帮你

不要手动StopWatch了,让BenchmarkDotNet帮你

发布时间:2015-10-29 17:00:46
Nuget: https://www.nuget.org/packages/BenchmarkDotNet/Project Site: https://github.com/PerfDotNet/BenchmarkDotNet使用非常方便。第一步,创建待测试的类和方法,并用Ben ...

Nuget: https://www.nuget.org/packages/BenchmarkDotNet/

Project Site: https://github.com/PerfDotNet/BenchmarkDotNet

不要手动StopWatch了,让BenchmarkDotNet帮你

使用非常方便。

第一步,创建待测试的类和方法,并用Benchmark属性修饰需要测试的方法。注意类和方法都必须是public的。

using BenchmarkDotNet;namespace NumberRollOverTest{  public class NumberRollOver  {    public const byte Max = byte.MaxValue;    [Benchmark]    public void TestRollOver()    {      RollOver(Max);      }    [Benchmark]    public void TestRollOverByCast()    {      RollOverByCast(Max);      }...}

 

海外公司注册、海外银行开户、跨境平台代入驻、VAT、EPR等知识和在线办理:https://www.xlkjsw.com

原标题:不要手动StopWatch了,让BenchmarkDotNet帮你

关键词:dotnet

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录