C# Linq Sum() 方法

使用 LinqSum()方法求元素的总和。

这是我们的整数元素列表。

List<int> list = new List<int> { 99, 34, 77, 75, 87, 35, 88};

现在使用该Sum()方法求和。

list.AsQueryable().Sum();

以下是查找具有整数元素的列表的元素总和的示例。

示例

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<int> list = new List<int> { 99, 34, 77, 75, 87, 35, 88};
      int res = list.AsQueryable().Sum();
      Console.WriteLine("Sum = {0}", res);
   }
}
输出结果
Sum = 495