csharp 秒表计时功能

Posted

tags:

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

public Example
{
  public static void main(string[] args)
  {
    execute(); 
  }
  
  public async Task<string> execute()
  {
    // create a stop watch to record how long this was running
    var watch = System.Diagnostics.Stopwatch.StartNew(); 
    
    // execute a long running task 
    await SampleLongRunningTask(); 
    
    // stop the stopwatch 
    watch.Stop(); 
    
    // capture the amount of time run in milliseconds 
    double timeRun = watch.ElapsedMilliSeconds; 
  }
  
  public void SampleLongRunningTask()
  {
      
  }
}

以上是关于csharp 秒表计时功能的主要内容,如果未能解决你的问题,请参考以下文章

用定时器实现10s秒表的计时功能,精确到小数点后一位,即能够有0.1s显示,有开始,暂停,清零的功能(C语

JavaJava计时器(秒表)

秒表计时器

课程设计数字秒表设计 求高手解答。

期中考试秒表计时器

期中测试( 制作一个秒表计时器 )