当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


LINQ sum()用法及代码示例


在 LINQ 中 sum() 函数用于计算集合/列表中项目的总和。

以下是在 C# 中定义 LINQ sum 函数的语法,总结一下列表中的项目。

C# 中 LINQ Sum 函数的语法

int[] Num = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
int Sum = Num.Sum();

根据上述语法,我们正在使用 LINQ Sum 函数对 "Num" 列表中的项进行求和。

现在,我们将看到在 C# 应用程序中使用 LINQ Sum() 函数对集合/列表中的项进行求和的完整示例。

using System;
using System.Collections.Generic;
using System. Linq;
using System. Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {   
//create array num with the initializing value
            int[] Num = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
            Console.WriteLine("Calculating the sum of all the elements of the array:");
//Num.Sum() is used to add the value of the Num array
            int Sum = Num.Sum();
            Console.WriteLine("The Sum is {0}", Sum);
            Console.ReadLine();
        }
    }
}

在上面的例子中,我们使用 sum 函数来计算数组列表 "Num." 中元素的总和

当我们执行上面的例子时,我们得到了结果,如下图:

LINQ sum () Function

我们可以使用 LINQ 中的 sum() 函数对集合/列表中的项目进行求和,这是根据我们的要求。





相关用法


注:本文由纯净天空筛选整理自 LINQ sum () Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。