我有这样的代码,如果我反复做某事,我想获得完成该任务所需的平均时间。
List<TimeSpan> TimeDisplay = new List<TimeSpan>();
while(some condition)
{
Stopwatch sw = new Stopwatch();
sw.Start();
TimeSpan temp;
//DO SOMETHING\\
sw.Stop();
temp = sw.Elapsed
TimeDisplay.Add(temp);
}
TimeSpan timeaverage = TimeDisplay.Average;
System.Console.Writeline("{0}", timeaverage);
但是我在倒数第二行收到一个错误,说我无法将方法组“Average”转换为“System.TimeSPan”