码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2015-11-23 10:07:33      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:

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

            lbImportTime.Text = "";

            //开始记录时间

            Stopwatch myWatch = Stopwatch.StartNew();

            //记录运行时间

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

 

           //停止记录时间

            myWatch.Stop();

           //显示运行时间

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

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

标签:

原文地址:http://www.cnblogs.com/milest/p/4987453.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!