测量程序运行时间
Posted 王炜忠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了测量程序运行时间相关的知识,希望对你有一定的参考价值。
1 string a = string.Empty; 2 Stopwatch sp = new Stopwatch();//using System.Diagnostics; 3 sp.Start();//开始 4 for (int i = 0; i < 100000; i++) 5 { 6 a += i; 7 } 8 sp.Stop();//结束 9 Console.WriteLine(sp.Elapsed);//sp.Elapsed为时间间隔
以上是关于测量程序运行时间的主要内容,如果未能解决你的问题,请参考以下文章