使用Stopwatch测量运行时间
Stopwatch Watch = new Stopwatch();
//启动计时器
Watch.Start();
log.Debug($"开始调用GetDimensionErrorPage_4:{Watch.ElapsedMilliseconds} ms");
//这里做一些耗时的事情
//这里做一些耗时的事情
//这里做一些耗时的事情
log.Debug($"调用完成 GetDimensionErrorPage_4:{Watch.ElapsedMilliseconds} ms");
Watch.Stop();
Watch = null;