本文概述
- LINQ Concat方法的语法
- LINQ Concat方法的示例
这是LINQ Concat方法的图形表示。
文章图片
在上图中, 两个元素列表组合成一个集合。
LINQ Concat方法的语法
var result = arr1.Concat(arr2);
在以上语法中, 我们将两个列表串联为一个列表。
LINQ Concat方法的示例 这是LINQ Concat方法的示例。
using System;
using System. Collections;
using System.Collections.Generic;
using System. Linq;
using System. Text;
using System.Threading.Tasks;
namespace ConsoleApp1{class Programme2{static void Main(string[] args){//here we create two array type of string variable array1 and array2 string[] array1 = { "a", "b", "c", "d" };
string[] array2 = { "c", "d", "e", "f" };
/*here we will concat two array with the help of 'concat'method and store the output in 'result' variable*/var result = array1.Concat(array2);
//foreach loop will print the value of resultforeach (var item in result){Console.WriteLine(item);
}Console.ReadLine();
}}}
在上面的示例中, 我们使用concat方法将两个序列” array1″ , ” array2″ 串联为一个序列。
【LINQ Concat方法】输出
文章图片
推荐阅读
- LINQ生成操作
- LINQ SequenceEqual方法
- LINQ except方法
- LINQ distinct方法
- LINQ相交方法
- LINQ联合方法
- LINQ集合操作
- LINQ group连接
- LINQ Single()方法