StopWatch
Posted webapp-dotnet
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了StopWatch相关的知识,希望对你有一定的参考价值。
程序中为了计算使用时间,通常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的主要内容,如果未能解决你的问题,请参考以下文章