當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。