天天看點

C# 計算接口調用時長

//擷取 接口的資料
Stopwatch sw = new Stopwatch();//計算耗時
sw.Start();
fn1();//接口調用方法
sw.Stop();
return JsonMsg.OK($"成功,{sw.Elapsed.TotalSeconds}秒", value1);