在设计程序时,我们会经常遇到客户要求在程序运行过程中动态显示程序的运行时间,那么,当我们遇到这个需求该如何解决呢?在c#编程语言中我们可以多种方法来获取程序运行的时间,接下来,济南网站建设小编就来为大家介绍一种,通过【Stopwatch】类来测量时间,有需要的朋友可以过来关注一下
关键代码:
static void Main() { Stopwatch stopwatch = new Stopwatch(); stopwatch.Start(); for (int i = 0; i < 1000000; i++) { // 模拟程序运行耗时 } stopwatch.Stop(); Console.WriteLine($"程序运行时间: {stopwatch.ElapsedMilliseconds} 毫秒"); }
评论