C# 使用 Stopwatch 测量代码运行时间
时间:2010-08-31 来源:大豆男生
System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
sw.Start();
System.Threading.Thread.Sleep(3000);
sw.Stop();
Console.WriteLine(sw.Elapsed);
sw.Start();
System.Threading.Thread.Sleep(3000);
sw.Stop();
Console.WriteLine(sw.Elapsed);
相关阅读 更多 +