假设我正在对一堆不同的函数进行基准测试,我只想调用一个函数来运行函数 foo n 次。
当所有函数都具有相同的返回类型时,您可以这样做
static void benchmark(Func<ReturnType> function, int iterations)
{
Console.WriteLine("Running {0} {1} times.", function.Method.Name, iterations);
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
for (int i = 0; i < iterations; ++i)
{
function();
}
stopwatch.Stop();
Console.WriteLine("Took {0} to run {1} {2} times.", stopwatch.Elapsed, function.Method.Name, iterations);
}
但是如果我正在测试的函数有不同的返回类型呢?我可以接受具有泛型类型的函数吗?我尝试使用Func <T>
但它不起作用。