计算方法执行完的耗时 c#
Posted mact
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算方法执行完的耗时 c#相关的知识,希望对你有一定的参考价值。
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#的主要内容,如果未能解决你的问题,请参考以下文章