计算List中某个列的和
student{
money
}
list<student> list
要计算所有学生钱的综合.
不要
int allMoney;
foreach(student stu in list){
allMoney=money+allMoney;
}
list<T>有什么自带方法或者用拉姆达表达式可以实现么???
------解决方案--------------------var total = list.Sum(x => x.money);
------解决方案--------------------