码迷,mamicode.com
首页 > 其他好文 > 详细

StopWatch

时间:2020-01-13 16:01:46      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:for   star   程序   var   text   hang   lap   reac   change   

程序中为了计算使用时间,通常Stopwatchshi‘y

Stopwatch watch = Stopwatch.StartNew();

        using (RetailEntities context = new RetailEntities())
        {
          foreach (var entity in customers)
          {
            context.Customers.Add(entity);
          }
          context.SaveChanges();
        }

        watch.Stop();
        Console.WriteLine(string.Format(
          "{0} customers are created, cost {1} milliseconds.", 
          customerCount, watch.ElapsedMilliseconds));

StopWatch

标签:for   star   程序   var   text   hang   lap   reac   change   

原文地址:https://www.cnblogs.com/WebApp-DotNet/p/12187415.html

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