Stopwatch进行程式性能监测
Posted genggo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Stopwatch进行程式性能监测相关的知识,希望对你有一定的参考价值。
Stopwatch类的命名空间:using System.Diagnostics;
用法:
Stopwatch sw = new Stopwatch();
sw.Start();
//////////////////////////////////
需要监测的代码
/////////////////////////////////
sw.Stop();
TimeSpan ts2 = sw.Elapsed;
ShowExclamation("执行时间" + ts2.TotalMilliseconds);//此处ShowExclamation方法是show包装后。
以上是关于Stopwatch进行程式性能监测的主要内容,如果未能解决你的问题,请参考以下文章