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

C#中计时器的操作

时间:2017-10-17 12:08:21      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:ati   read   start   logs   stat   ons   code   string   long   

我们可以用Stopwatch类获得程序的运行时间,在优化代码时,可以用此方法来查看优化前后程序所耗费的时间

static void Main(string[] args)
{
    Stopwatch sw = new Stopwatch();
    long num = 0;
    sw.Reset();
    sw = Stopwatch.StartNew();
    for (int i = 1; i < 100000000; i++) num += 1;
    sw.Stop();
    TimeSpan el = sw.Elapsed;
    Console.WriteLine("花费 {0} ", el);
    long ms = sw.ElapsedMilliseconds;
    Console.WriteLine("花费 {0} 毫秒", ms);
    long tk = sw.ElapsedTicks;
    Console.WriteLine("花费 {0} ticks", tk);
    Console.ReadKey();
}

参考:用Stopwatch类获得程序运行时间

C#中计时器的操作

标签:ati   read   start   logs   stat   ons   code   string   long   

原文地址:http://www.cnblogs.com/wuqiuxue/p/7680180.html

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