C# 求序列和的程序

首先,设置一个序列。

List<int> myList = new List<int> { 1, 2, 3, 4 ,5};

现在使用 QueryableSum()方法求和。

myList.AsQueryable().Sum();

示例

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      List<int> myList = new List<int> { 1, 2, 3, 4 ,5};
      Console.WriteLine("列表中元素的总和...");
      foreach (int res in myList) {
         Console.WriteLine(res);
      }
      int sum = myList.AsQueryable().Sum();
      Console.WriteLine("Sum = {0}", sum);
   }
}
输出结果
列表中元素的总和...
1
2
3
4
5
Sum = 15