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


C# Linq Aggregate()用法及代码示例


这里我们将为课程创建一个字符串数组,并在所有课程之间连接逗号“,”,然后使用 Linq Aggregate() 方法合并所有课程。

程序:

下面给出了演示 Linq Aggregate() 方法的源代码。给定的程序在 Microsoft Visual Studio 上编译并成功执行。

//C# Program to demonstrate Linq Aggregate() method.

using System;
using System.Linq;

class LinqDemo
{
    static void Main(string[] args)
    {
        string[] Courses = { "BCA", "MCA", "MBA", "MA", "CA", "BBA" };

        string rstString = "";
        
        rstString=Courses.Aggregate((s1, s2) => s1 + ", " + s2);

        Console.WriteLine(rstString);
    }
}

输出:

BCA, MCA, MBA, MA, CA, BBA
Press any key to continue . . .

说明:

在上面的程序中,我们创建了一个包含课程的字符串数组。然后使用 Aggregate() 方法合并所有课程,并在最终字符串中使用逗号 (,) 运算符分隔所有课程。这里 Aggregate() 方法将返回一个组合的单个字符串。

要使用 Aggregate() 方法,必须导入 "System.Linq" 命名空间。




相关用法


注:本文由纯净天空筛选整理自 C# program to demonstrate the example of Linq Aggregate() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。