这里我们将为课程创建一个字符串数组,并在所有课程之间连接逗号“,”,然后使用 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# Linq Distinct()用法及代码示例
- C# Linq ThenBy()用法及代码示例
- C# Linq Union()用法及代码示例
- C# Linq Concat()用法及代码示例
- C# Linq Intersect()用法及代码示例
- C# Linq Reverse()用法及代码示例
- C# Linq ThenByDescending()用法及代码示例
- C# List.TrimExcess用法及代码示例
- C# List FindLastIndex()方法用法及代码示例
- C# List.FindIndex()用法及代码示例
- C# List BinarySearch()用法及代码示例
- C# List FindLastIndex()函数用法及代码示例
- C# Decimal.FromOACurrency()用法及代码示例
- C# Int32.CompareTo用法及代码示例
- C# File.WriteAllLines(String, IEnumerable<String>)用法及代码示例
- C# Type.GetTypeHandle()用法及代码示例
- C# Uri.IsBaseOf()用法及代码示例
- C# String.ToUpperInvariant用法及代码示例
- C# File.Copy(String, String, Boolean)用法及代码示例
- C# Uri.IsHexEncoding()用法及代码示例
注:本文由纯净天空筛选整理自 C# program to demonstrate the example of Linq Aggregate() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。