C# 测量程序运行时间

using System.Diagnostics;

Stopwatch watch = new Stopwatch();
watch.Start();
/*
需要测量运行时间的程序
*/
watch.Stop();
this.BeginInvoke(updateTxt, " (耗时" + (watch.ElapsedMilliseconds / 1000.0) + " s)\r\n", Color.Red);
上一篇:新浪云git 上传 nodejs项目


下一篇:MySQL 存储过程参数