C#记录程序运行时间记录显示


           //引入命名空间
            using System.Diagnostics;
            //清空导入时间

            lbImportTime.Text = "";

            //开始记录时间

            Stopwatch myWatch = Stopwatch.StartNew();

            //记录运行时间

           //====================


           //停止记录时间

            myWatch.Stop();

           //显示运行时间

            lbImportTime.Text = myWatch.ElapsedMilliseconds.ToString();

你可能感兴趣的:(C#记录程序运行时间记录显示)