标签: c#
我想运行数学函数(动态)n次......
所以f(x)将是:
((n+0) * (n+1) * (n+2) * .... * (n+x)) / (0+1+2+...+x+(x+1))
由于我想用函数计算n次,所以一遍又一遍地重新计算函数效率不高。有没有办法将函数存储在方法中?