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

计算方法执行完的耗时 c#

时间:2019-08-11 10:32:51      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:console   stat   方法   lin   stop   star   watch   long   write   

  Stopwatch watch = Stopwatch.StartNew();

//要执行的方法

test();

watch.Stop();
Console.WriteLine(string.Format("耗时:{0}", formatDuring(watch.ElapsedMilliseconds)));
Console.ReadKey();

//毫秒转成天小时分钟

public static String formatDuring(long mss)
{
long days = mss / (1000 * 60 * 60 * 24);
long hours = (mss % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60);
long minutes = (mss % (1000 * 60 * 60)) / (1000 * 60);
long seconds = (mss % (1000 * 60)) / 1000;
return days + "天" + hours + "小时" + minutes + "分钟" + seconds + "秒";
}

计算方法执行完的耗时 c#

标签:console   stat   方法   lin   stop   star   watch   long   write   

原文地址:https://www.cnblogs.com/macT/p/11334076.html

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