Stopwatch Timer 时间 计时器 ElapsedMilliseconds

Posted xe2011

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Stopwatch Timer 时间 计时器 ElapsedMilliseconds相关的知识,希望对你有一定的参考价值。

技术图片



/// <summary>
/// 转换成时间 00:00:00
/// </summary>
/// <param name="duration"></param>
/// <returns></returns>
public string time(long duration)
{
    TimeSpan t = new TimeSpan(0, 0, Convert.ToInt32(duration));
    //string str = "00:00:00";
    return   $"{t.Hours:00}:{t.Minutes:00}:{t.Seconds : 00}";
}

int t = 0;
private void timer1_Tick(object sender, EventArgs e)
{
    t++;
    label4.Text =$"时间:{time(t)}";
}



(sw.ElapsedMilliseconds / 1000f).ToString("0.000 sec")

以上是关于Stopwatch Timer 时间 计时器 ElapsedMilliseconds的主要内容,如果未能解决你的问题,请参考以下文章

System.Diagnostics.Stopwatch

计时器工具 StopWatch

计时器工具 StopWatch

(转)C# Stopwatch详解

Google Guava Stopwatch(计时器)

认识一个工具 Stopwatch