首页 > 学院 > 开发设计 > 正文

不要手动StopWatch了,让BenchmarkDotNet帮你

2019-11-14 13:50:45
字体:
来源:转载
供稿:网友

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

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

clip_image002

使用非常方便。

第一步,创建待测试的类和方法,并用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);            }...}

第二步,启动Benchmark主程序(BenchmarkRunner)

using System;namespace NumberRollOverTest{    class Program    {        static void Main(string[] args)        {            new BenchmarkDotNet.BenchmarkRunner().RunCompetition(new NumberRollOver());            Console.Read();        }            }}

 


上一篇:C#入门--字段与属性

下一篇:委托

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表