计算耗时
使用Stopwatch
using System.Diagnostics; var watch = Stopwatch.StartNew(); // 这里是执行的过程 Console.WriteLine(watch.Elapsed); // 消耗的时间