1、类Stopwatch 提供一组方法和属性,可用于准确地测量运行时间。命名空间: System.DiagnosticsStopwatch timePerParse = Stopwatch.StartNew(); int inputNum = Int32.Parse(""); timePerParse.Stop(); Console.WriteLine(timePerParse.Elapsed); //00:00:00.0000073