C# 中用stopwatch测试代码运行时间
时间:2010-10-16 来源:天堂十八楼
Stopwatch timer = new Stopwatch();//new一个stopwatch long total = 0; timer.Start();//开始计算时间 for (long i = 1; i <= 100000000; i++) { total += i; } timer.Stop();//结束点,另外stopwatch还有Reset方法,可以重置。 Console.WriteLine(timer.Elapsed);//显示时间 Console.WriteLine(timer.ElapsedMilliseconds);// 显示到毫秒
相关阅读 更多 +