我希望迭代List<T>
并返回方法GetProfit
的总和,并将其保存在变量中,所以我做了:
decimal profit = bets.Where(c => c.Tags.ToLower().Contains(tag)).ToList()
.ForEach(c => GetProfit(c.Status, c.Stake, c.Odds));
编译器说:
无法将void隐式转换为十进制
答案 0 :(得分:5)
$request->input('parameter_name');
$request->all(); // for all parameters
构造返回ForEach
因此编译错误,而是使用void
子句从类型Select
映射到T
然后{{1 }}
decimal
或简单地说:
Sum