1、类Stopwatch    提供一组方法和属性,可用于准确地测量运行时间。

命名空间:   System.Diagnostics

Stopwatch timePerParse = Stopwatch.StartNew();
int inputNum = Int32.Parse("");
timePerParse.Stop();
Console.WriteLine(timePerParse.Elapsed); //00:00:00.0000073
05-26 19:32