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

C#Stopwatch用法

时间:2018-09-15 15:25:59      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:ogr   second   start   pwa   tar   dmi   top   str   lis   

框架:.net core2.0

class Program
{
static void Main(string[] args)
{
Fun();
}
public static void Fun() {
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
for (var i = 1; i < 1000000000; i++) {
//doSomeString
}
stopwatch.Stop();
Console.WriteLine(stopwatch.ElapsedMilliseconds);
}
}

C#Stopwatch用法

标签:ogr   second   start   pwa   tar   dmi   top   str   lis   

原文地址:https://www.cnblogs.com/hzpblogs/p/9650867.html

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