标签:
//引入命名空间
using System.Diagnostics;
//清空导入时间
lbImportTime.Text = "";
//开始记录时间
Stopwatch myWatch = Stopwatch.StartNew();
//记录运行时间
//====================
//停止记录时间
myWatch.Stop();
//显示运行时间
lbImportTime.Text = myWatch.ElapsedMilliseconds.ToString();
标签:
原文地址:http://www.cnblogs.com/milest/p/4987453.html